All Projects → TomAugspurger → Dask Tutorial Pycon 2018

TomAugspurger / Dask Tutorial Pycon 2018

Projects that are alternatives of or similar to Dask Tutorial Pycon 2018

Ccm Site
NYU PSYCH-GA 3405.002 / DS-GS 3001.006 : Computational cognitive modeling
Stars: ✭ 127 (-1.55%)
Mutual labels:  jupyter-notebook
Cmaps
user defined colormaps in matplotlib.
Stars: ✭ 126 (-2.33%)
Mutual labels:  jupyter-notebook
Nb2xls
Convert Jupyter notebook to Excel spreadsheet
Stars: ✭ 129 (+0%)
Mutual labels:  jupyter-notebook
Rsis
Recurrent Neural Networks for Semantic Instance Segmentation
Stars: ✭ 128 (-0.78%)
Mutual labels:  jupyter-notebook
Pyvi
Python Vietnamese Core NLP Toolkit
Stars: ✭ 128 (-0.78%)
Mutual labels:  jupyter-notebook
Python Workshop
A series of Jupyter Notebooks on exploring Unidata technology with Python. See website for more information.
Stars: ✭ 127 (-1.55%)
Mutual labels:  jupyter-notebook
Thepythonmegacourse
Stars: ✭ 128 (-0.78%)
Mutual labels:  jupyter-notebook
My deep project
个人深度学习项目整理
Stars: ✭ 129 (+0%)
Mutual labels:  jupyter-notebook
Pydata Chicago2016 Ml Tutorial
Machine learning with scikit-learn tutorial at PyData Chicago 2016
Stars: ✭ 128 (-0.78%)
Mutual labels:  jupyter-notebook
Real Time Sentiment Tracking On Twitter For Brand Improvement And Trend Recognition
A real-time interactive web app based on data pipelines using streaming Twitter data, automated sentiment analysis, and MySQL&PostgreSQL database (Deployed on Heroku)
Stars: ✭ 127 (-1.55%)
Mutual labels:  jupyter-notebook
Abstractive Summarization
Implementation of abstractive summarization using LSTM in the encoder-decoder architecture with local attention.
Stars: ✭ 128 (-0.78%)
Mutual labels:  jupyter-notebook
Gumbel
Gumbel-Softmax Variational Autoencoder with Keras
Stars: ✭ 127 (-1.55%)
Mutual labels:  jupyter-notebook
Contactpose
Large dataset of hand-object contact, hand- and object-pose, and 2.9 M RGB-D grasp images.
Stars: ✭ 129 (+0%)
Mutual labels:  jupyter-notebook
Byu econ applied machine learning
The course work for the applied machine learning course I am teaching at BYU
Stars: ✭ 128 (-0.78%)
Mutual labels:  jupyter-notebook
Eewpython
A series of Jupyter notebook to learn Google Earth Engine with Python
Stars: ✭ 129 (+0%)
Mutual labels:  jupyter-notebook
Slicerjupyter
Extension for 3D Slicer that allows the application to be used from Jupyter notebook
Stars: ✭ 127 (-1.55%)
Mutual labels:  jupyter-notebook
2013 fall astr599
Content for my Astronomy 599 Course: Intro to scientific computing in Python
Stars: ✭ 128 (-0.78%)
Mutual labels:  jupyter-notebook
Predictive Filter Flow
Predictive Filter Flow for fully/self-supervised learning on various vision tasks
Stars: ✭ 128 (-0.78%)
Mutual labels:  jupyter-notebook
Stanford Machine Learning Camp
Stars: ✭ 128 (-0.78%)
Mutual labels:  jupyter-notebook
Pytorch Ensembles
Pitfalls of In-Domain Uncertainty Estimation and Ensembling in Deep Learning, ICLR 2020
Stars: ✭ 128 (-0.78%)
Mutual labels:  jupyter-notebook

Parallel Data Analysis with Dask

Materials for the Dask tutorial at PyCon 2018.

First Time Setup

If you don't have git installed, you can download a ZIP copy of the repository using the green button above. Note that the file will be called dask-tutorial-pycon-2018-master, instead of dask-tutorial-pycon-2018. Adjust the commands below accordingly.

Install Miniconda or ensure you have Python 3.6 installed on your system.

# Update conda
conda update conda

# Clone the repository. Or download the ZIP and add `-master` to the name.
git clone https://github.com/TomAugspurger/dask-tutorial-pycon-2018

# Enter the repository
cd dask-tutorial-pycon-2018

# Create the environment
conda env create

# Activate the environment
conda activate dask-pycon

# Download data
python prep_data.py

# Start jupyterlab
jupyter lab

If you aren't using conda

# Clone the repository. Or download the ZIP and add `-master` to the name.
git clone https://github.com/TomAugspurger/dask-tutorial-pycon-2018

# Enter the repository
cd dsak-tutorial-pycon-2018

# Create a virtualenv
python3 -m venv .env

# Activate the env
# See https://docs.python.org/3/library/venv.html#creating-virtual-environments
# For bash it's
source .env/bin/activate

# Install the dependencies
python -m pip install -r requirements.txt

# Download data
python prep_data.py

# Start jupyterlab
jupyter lab

Connect to the Cluster

We have a pangeo deployment running that'll provide everyone with their own cluster to try out Dask on some larger problems. You can log into the cluster by going to:

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