All Projects → datacamp → Datacamp_facebook_live_titanic

datacamp / Datacamp_facebook_live_titanic

Licence: mit
DataCamp Facebook Live Code Along Session 2: Learn how to complete a Kaggle competition using exploratory data analysis, data munging, data cleaning and machine leaning. Enjoy.

Projects that are alternatives of or similar to Datacamp facebook live titanic

A Week In Wild Ai
360 view on ai/ml/dl applications
Stars: ✭ 56 (-1.75%)
Mutual labels:  jupyter-notebook
Covidnet Ct
COVID-Net Open Source Initiative - Models and Data for COVID-19 Detection in Chest CT
Stars: ✭ 57 (+0%)
Mutual labels:  jupyter-notebook
Data Mining
Lecture slides and quizzes for Leskovec, Rajaraman, and Ullman's "Mining of Massive Datasets" Stanford course
Stars: ✭ 57 (+0%)
Mutual labels:  jupyter-notebook
Baidu dogs
百度西交第三届大数据比赛Baseline(全国第4名)
Stars: ✭ 56 (-1.75%)
Mutual labels:  jupyter-notebook
Clr
Stars: ✭ 1,087 (+1807.02%)
Mutual labels:  jupyter-notebook
Cinemanet
Stars: ✭ 57 (+0%)
Mutual labels:  jupyter-notebook
Dslt
Deep Regression Tracking with Shrinkage Loss
Stars: ✭ 55 (-3.51%)
Mutual labels:  jupyter-notebook
Text Generation Using Bidirectional Lstm And Doc2vec Models
Text Generation using Bidirectional LSTM and Doc2Vec models
Stars: ✭ 57 (+0%)
Mutual labels:  jupyter-notebook
Amazon Sagemaker Safe Deployment Pipeline
Safe blue/green deployment of Amazon SageMaker endpoints using AWS CodePipeline, CodeBuild and CodeDeploy.
Stars: ✭ 56 (-1.75%)
Mutual labels:  jupyter-notebook
Hypothesis Testing With Python
True difference or noise? 📊
Stars: ✭ 58 (+1.75%)
Mutual labels:  jupyter-notebook
Interpreting Decision Trees And Random Forests
Unwrapping decision trees and random forests to make them less of a black box
Stars: ✭ 56 (-1.75%)
Mutual labels:  jupyter-notebook
Codeforces Api
Tools for estimating problem difficulty, predictors rating trajectories, and tracking individual learning progress in algorithms.
Stars: ✭ 56 (-1.75%)
Mutual labels:  jupyter-notebook
Niftidataset
pytorch dataset class for reading and transforming NIfTI files
Stars: ✭ 57 (+0%)
Mutual labels:  jupyter-notebook
Endtoend Predictive Modeling Using Python
Stars: ✭ 56 (-1.75%)
Mutual labels:  jupyter-notebook
Deep Belief Network Pytorch
This repository has implementation and tutorial for Deep Belief Network
Stars: ✭ 57 (+0%)
Mutual labels:  jupyter-notebook
Tensorflow Machine Learning Projects
Stars: ✭ 56 (-1.75%)
Mutual labels:  jupyter-notebook
Covid Nyc Dasymetric Map
Stars: ✭ 57 (+0%)
Mutual labels:  jupyter-notebook
Convisualize nb
Visualisations for Convolutional Neural Networks in Pytorch
Stars: ✭ 57 (+0%)
Mutual labels:  jupyter-notebook
Polyaxon Examples
Code for polyaxon tutorials and examples
Stars: ✭ 57 (+0%)
Mutual labels:  jupyter-notebook
Pointseg
Stars: ✭ 57 (+0%)
Mutual labels:  jupyter-notebook

Binder

To write code & run the Jupyter notebooks immediately without needing to install anything on your computer, click on the "launch binder" badge above. For more on Binder, go here.

IMPORTANT

If you're planning to code along, make sure to clone, download, or re-pull this repository on the morning of Friday 12/01. All edits will be completed by end of day ET Thursday 11/31.

How to complete a Kaggle Competition with Machine Learning

with Hugo Bowne-Anderson. Follow him on twitter @hugobowne

After a successful first Facebook Live Coding session, DataCamp's very own Hugo Bowne-Anderson is back in front of the camera! This time, Hugo will take you from zero to one with machine learning to make several submissions to Kaggle's (in)famous Titanic machine learning competition. The goal will be to build an algorithm that predicts whether any given passenger on the Titanic survived or not, given data on them such as the fare they paid, where they embarked and their age. You'll do so using the Python programming language, Jupyter notebooks and state-of-the-art packages such as pandas, scikit-learn and seaborn. Alongside Hugo, you'll dive into this rich dataset and build your chops in exploratory data analysis, data munging and cleaning, and machine learning. No previous experience with machine learning necessary. Join us for this live, interactive code along.

Join Hugo live on Friday 12/01 at 10:30am ET on Facebook!

Prerequisites

Not a lot. It would help if you knew

  • programming fundamentals and the basics of the Python programming language (e.g., variables, for loops);
  • a bit about pandas and DataFrames;
  • a bit about Jupyter Notebooks;
  • your way around the terminal/shell.

However, I have always found that the most important and beneficial prerequisite is a will to learn new things so if you have this quality, you'll definitely get something out of this code-along session.

Also, if you'd like to watch and not code along, you'll also have a great time and these notebooks will be downloadable afterwards also.

If you are going to code along and use the Anaconda distribution of Python 3 (see below), I ask that you install it before the session.

Note: We may be making some live submissions to Kaggle so, if you want to do that, get yourself an account before the session.

Getting set up computationally

1. Clone the repository

To get set up for this live coding session, clone this repository. You can do so by executing the following in your terminal:

git clone https://github.com/datacamp/datacamp_facebook_live_titanic

Alternatively, you can download the zip file of the repository at the top of the main page of the repository. If you prefer not to use git or don't have experience with it, this a good option.

2. Download Anaconda (if you haven't already)

If you do not already have the Anaconda distribution of Python 3, go get it (n.b., you can also do this w/out Anaconda using pip to install the required packages, however Anaconda is great for Data Science and I encourage you to use it).

3. Create your conda environment for this session

Navigate to the relevant directory datacamp_facebook_live_titanic and install required packages in a new conda environment:

conda env create -f environment.yml

This will create a new environment called fb_live_titanic. To activate the environment on OSX/Linux, execute

source activate fb_live_titanic

On Windows, execute

activate fb_live_titanic

4. Open your Jupyter notebook

In the terminal, execute jupyter notebook.

Then open the notebook 1-titanic_EDA_first_models.ipynb and we're ready to get coding. Enjoy.

Code

The code in this repository is released under the MIT license. Read more at the Open Source Initiative. All text remains the Intellectual Property of DataCamp. If you wish to reuse, adapt or remix, get in touch with me at hugo at datacamp com to request permission.

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].