All Projects → MLWorkshops → mlinterviews

MLWorkshops / mlinterviews

Licence: other
Preparing for the Data Science Interview Workshop resource.

Programming Languages

Jupyter Notebook
11667 projects

Projects that are alternatives of or similar to mlinterviews

How To Prepare For Google Interview Swe Sre
This repository includes resources which are more than sufficient to prepare for google interview if you are applying for a software engineer position or a site reliability engineer position
Stars: ✭ 251 (+1376.47%)
Mutual labels:  interview-preparation
Competitive-Programming-June-Course-
Problem Solving Ability Skills Course
Stars: ✭ 24 (+41.18%)
Mutual labels:  interview-preparation
pw
Best websites a Programmer should visit
Stars: ✭ 27 (+58.82%)
Mutual labels:  interview-preparation
Tech Interview Handbook
💯 Curated interview preparation materials for busy engineers
Stars: ✭ 64,851 (+381376.47%)
Mutual labels:  interview-preparation
CPPNotes
【C++ 面试 + C++ 学习指南】 一份涵盖大部分 C++ 程序员所需要掌握的核心知识。
Stars: ✭ 557 (+3176.47%)
Mutual labels:  interview-preparation
Test-Bank
Interview preparation and practice problems
Stars: ✭ 43 (+152.94%)
Mutual labels:  interview-preparation
Accessibility interview questions
A starting point for questions to ask someone that wants you to give them a job
Stars: ✭ 236 (+1288.24%)
Mutual labels:  interview-preparation
dailycodingproblem
Solutions to Daily Coding Problem questions
Stars: ✭ 26 (+52.94%)
Mutual labels:  interview-preparation
InterviewPrep
A repository containing link of good interview questions
Stars: ✭ 54 (+217.65%)
Mutual labels:  interview-preparation
SDE Sheet Striver
C++ Solutions of 180 Questions [30 Days] of Strivers SDE Sheet , YouTube Channel TAKEUFORWARD (Raj Vikramaditya bhaiyaa)
Stars: ✭ 188 (+1005.88%)
Mutual labels:  interview-preparation
Javascript Algorithms
📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readings
Stars: ✭ 133,406 (+784641.18%)
Mutual labels:  interview-preparation
TheJobInterviewGuide
A job guide to help developers get through interviews and get amazing jobs!
Stars: ✭ 267 (+1470.59%)
Mutual labels:  interview-preparation
CPP-Questions
Competitive Programming Questions
Stars: ✭ 52 (+205.88%)
Mutual labels:  interview-preparation
Interviews
Everything you need to know to get the job.
Stars: ✭ 54,875 (+322694.12%)
Mutual labels:  interview-preparation
Algorithmic-Problem-Solving
Solutions of algorithmic type of programming problems from sites like LeetCode.com, HackerRank.com, LeetCode.com, Codility.com, CodeForces.com, etc. using Java.
Stars: ✭ 20 (+17.65%)
Mutual labels:  interview-preparation
Interview Techdev Guide
This repository contains curated technical interview questions by fn+geeks community
Stars: ✭ 252 (+1382.35%)
Mutual labels:  interview-preparation
ctci-python-solutions
Cracking the Coding Interview in Python 3. The solutions all have detailed explanations with visuals.
Stars: ✭ 1,062 (+6147.06%)
Mutual labels:  interview-preparation
Front-end-Job-Interview-Questions
Ответы на вопросы на должность Frontend разработчика.
Stars: ✭ 236 (+1288.24%)
Mutual labels:  interview-preparation
interviews-coding-challenges
Collection of coding challenges given by companies to aspiring developers
Stars: ✭ 24 (+41.18%)
Mutual labels:  interview-preparation
interview-questions
Популярные HTML / CSS / JavaScript / ECMAScript / TypeScript / React / Vue / Angular / Node вопросы на интервью и ответы на них (https://tinyurl.com/wxysrpsy)
Stars: ✭ 3,294 (+19276.47%)
Mutual labels:  interview-preparation

Preparing for the Data Science and Machine Learning Job Interview

Chat room

The following Gitter chatroom will be monitored during the workshop and everyone is encouraged to continue the conversation in this Gitter community.

Gitter

How to use this repository

The following decribes the contents of the repository, agenda and how to start using the notebooks.

Note: The workshop will use Python 3.6+ and Jupyter.

Organization

Folder Description
data Instructions on getting the data for the workshop
stats_workshop Introduction to statistical thinking
machine_learning_foundations ML foundations and classicial ML
interview_mythbusting Interviewing myths and truths
deep_learning Introduction to deep learning
mlops ML models in production

Agenda

[TBD]

Getting started

Running Jupyter directly on a local (host) machine

  • Install Python 3.6+.

  • Clone the repository and cd into the repository.

    git clone https://github.com/MLWorkshops/mlinterviews.git
    cd mlinterviews
    
  • Install the required Python packages with the included requirements file.

    pip install -r requirements.txt
    
  • Start the Jupyter notebook server (option 1) or Jupyter Lab (option 2) in the same folder as the repository.

    • Starting Juypter notebooks:
    jupyter notebook
    
    • Starting Jupyter Lab:
    jupyter lab
    

Running Jupyter inside a docker container

  • Install docker (Docker for Mac)

  • Clone the repository and cd into the repository.

    git clone https://github.com/MLWorkshops/mlinterviews.git
    cd mlinterviews
    
  • Pull the docker image from dockerhub

    make pull
    make docker-run
    
  • Open in your browser the following link http://127.0.0.1:8888/?token=<.....> printed out in your terminal.

Note: If no link with a token is printed out in your terminal, then open this link http://127.0.0.1:8888/ in your browser.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].