All Projects → gforsyth → Numba_tutorial_scipy2017

gforsyth / Numba_tutorial_scipy2017

Licence: other

Projects that are alternatives of or similar to Numba tutorial scipy2017

Caffe Excitationbp
Implementation of Excitation Backprop in Caffe
Stars: ✭ 106 (-0.93%)
Mutual labels:  jupyter-notebook
Bingham Rotation Learning
A Smooth Representation of SO(3) for Deep Rotation Learning with Uncertainty.
Stars: ✭ 106 (-0.93%)
Mutual labels:  jupyter-notebook
Skincancer
Skin cancer detection project
Stars: ✭ 107 (+0%)
Mutual labels:  jupyter-notebook
Cnn Yelp Challenge 2016 Sentiment Classification
IPython Notebook for training a word-level Convolutional Neural Network model for sentiment classification task on Yelp-Challenge-2016 review dataset.
Stars: ✭ 106 (-0.93%)
Mutual labels:  jupyter-notebook
Tensorflow2.0
学习笔记代码
Stars: ✭ 107 (+0%)
Mutual labels:  jupyter-notebook
Amazon Sagemaker Stock Prediction Archived
Workshop to demonstrate how to apply NN based algorithms to stock market data and forecast price movements.
Stars: ✭ 106 (-0.93%)
Mutual labels:  jupyter-notebook
Are You Fake News
Bias detection in the news. Back and front end for areyoufakenews.com
Stars: ✭ 105 (-1.87%)
Mutual labels:  jupyter-notebook
Clothing Recommender
ML
Stars: ✭ 107 (+0%)
Mutual labels:  jupyter-notebook
Stylegan2 Projecting Images
Projecting images to latent space with StyleGAN2.
Stars: ✭ 102 (-4.67%)
Mutual labels:  jupyter-notebook
Capsnet
CapsNet (from "Dynamic Routing Between Capsules") implemented in pytorch.
Stars: ✭ 107 (+0%)
Mutual labels:  jupyter-notebook
Cs570
Code for CS570, Essentials of Data Science
Stars: ✭ 106 (-0.93%)
Mutual labels:  jupyter-notebook
Reinforcement learning
Reinforcement Learning research
Stars: ✭ 107 (+0%)
Mutual labels:  jupyter-notebook
Penkit
Tools for pen plotting in Python
Stars: ✭ 107 (+0%)
Mutual labels:  jupyter-notebook
Cs224d
CS224D Assignments
Stars: ✭ 106 (-0.93%)
Mutual labels:  jupyter-notebook
Aws Ai Bootcamp Labs
This library holds a collection of Notebooks and code examples for AWS AI Bootcamps.
Stars: ✭ 107 (+0%)
Mutual labels:  jupyter-notebook
Jupyterworkflow
Reproducible Data Analysis Workflow in Jupyter
Stars: ✭ 106 (-0.93%)
Mutual labels:  jupyter-notebook
Bilibli notes2
攻城狮之家B站视频课程课件合集2,1号仓库https://github.com/JokerJohn/bilibili_notes.git
Stars: ✭ 107 (+0%)
Mutual labels:  jupyter-notebook
Numba Examples
Example Numba implementations of functions
Stars: ✭ 108 (+0.93%)
Mutual labels:  jupyter-notebook
Selfdrivingcar
A collection of all projects pertaining to different layers in the SDC software stack
Stars: ✭ 107 (+0%)
Mutual labels:  jupyter-notebook
Bayesian Methods For Ml
Materials for "Bayesian Methods for Machine Learning" Coursera MOOC
Stars: ✭ 107 (+0%)
Mutual labels:  jupyter-notebook

Numba: Tell those C++ bullies to get lost

This is the repository for the Scipy 2017 tutorial. The tutorial will be presented as a set of Jupyter notebooks with exercises sprinkled throughout.

  1. Installation
  2. Optional extras
  3. Check your installation

Installation Instructions

We strongly, strongly, strongly encourage you to use conda to install the required packages for this tutorial. There are non-Python dependencies required that make manual installation or installing with pip very involved.

Note also that this tutorial is written for Python 3.6. Most things will still work on Python 3.4+.

No guarantees of any kind are made that it will be compatible with Python 2.

Installing with conda

Option a) Create a new environment

Download the environment.yml file in the root of this repository, e.g.

wget https://raw.githubusercontent.com/gforsyth/numba_tutorial_scipy2017/master/environment.yml

and then create the environment with

conda env create -f environment.yml

This will create a conda environment named numbatutorial with all of the required packages.

You can activate the environment with

source activate numbatutorial

or on Windows:

activate numbatutorial

Option b) Install the required packages

conda install jupyter ipython numpy numba line_profiler matplotlib

Optional extras

No hands-on work requires these, but if you want to play with some of the examples. If you installed using either environments.yml or requirements.txt these are already installed.

conda install cython
pip install cython

We recommend you also install the Jupyter notebook extensions.

conda install -c conda-forge jupyter_contrib_nbextensions

Once they are installed, start a notebook server

jupyter notebook

and (assuming port 8888) navigate to http://localhost:8888/nbextensions where you can choose which extensions to enable. One that is helpful (for us!) when using Numba in the notebook is the Skip-Traceback extension. You're welcome to enable whichever extensions you like (we're also fans of Codefolding and the Comment/Uncomment Hotkey).

Check Installation

Once you have downloaded all of the requires libraries/packages, you can run the check_install.py script to confirm that everything is working as expected. Either download the file directly or clone this repository and then run

python check_install.py
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].