All Projects → dmlc → Mxnet Notebooks

dmlc / Mxnet Notebooks

Licence: apache-2.0
Notebooks for MXNet

Projects that are alternatives of or similar to Mxnet Notebooks

Machinelearning
My blogs and code for machine learning. http://cnblogs.com/pinard
Stars: ✭ 5,984 (+851.35%)
Mutual labels:  jupyter-notebook
Ml notes
机器学习算法的公式推导以及numpy实现
Stars: ✭ 618 (-1.75%)
Mutual labels:  jupyter-notebook
Cvnd exercises
Exercise notebooks for CVND.
Stars: ✭ 622 (-1.11%)
Mutual labels:  jupyter-notebook
Introduction to ml with python
Notebooks and code for the book "Introduction to Machine Learning with Python"
Stars: ✭ 5,843 (+828.93%)
Mutual labels:  jupyter-notebook
Swift Models
Models and examples built with Swift for TensorFlow
Stars: ✭ 619 (-1.59%)
Mutual labels:  jupyter-notebook
Ebookmlcb
ebook Machine Learning cơ bản
Stars: ✭ 619 (-1.59%)
Mutual labels:  jupyter-notebook
Early Stopping Pytorch
Early stopping for PyTorch
Stars: ✭ 612 (-2.7%)
Mutual labels:  jupyter-notebook
Tensorflow Workshop
This repo contains materials for use in a TensorFlow workshop.
Stars: ✭ 628 (-0.16%)
Mutual labels:  jupyter-notebook
Deeplearning Assignment
深度学习笔记
Stars: ✭ 619 (-1.59%)
Mutual labels:  jupyter-notebook
Bamboolib
bamboolib - a GUI for pandas DataFrames
Stars: ✭ 622 (-1.11%)
Mutual labels:  jupyter-notebook
Breast cancer classifier
Deep Neural Networks Improve Radiologists' Performance in Breast Cancer Screening
Stars: ✭ 614 (-2.38%)
Mutual labels:  jupyter-notebook
Machine Learning Book
《机器学习宝典》包含:谷歌机器学习速成课程(招式)+机器学习术语表(口诀)+机器学习规则(心得)+机器学习中的常识性问题 (内功)。该资源适用于机器学习、深度学习研究人员和爱好者参考!
Stars: ✭ 616 (-2.07%)
Mutual labels:  jupyter-notebook
Mina
Mina is a new cryptocurrency with a constant size blockchain, improving scaling while maintaining decentralization and security.
Stars: ✭ 617 (-1.91%)
Mutual labels:  jupyter-notebook
H2o 3
H2O is an Open Source, Distributed, Fast & Scalable Machine Learning Platform: Deep Learning, Gradient Boosting (GBM) & XGBoost, Random Forest, Generalized Linear Modeling (GLM with Elastic Net), K-Means, PCA, Generalized Additive Models (GAM), RuleFit, Support Vector Machine (SVM), Stacked Ensembles, Automatic Machine Learning (AutoML), etc.
Stars: ✭ 5,656 (+799.21%)
Mutual labels:  jupyter-notebook
David Silver Reinforcement Learning
Notes for the Reinforcement Learning course by David Silver along with implementation of various algorithms.
Stars: ✭ 623 (-0.95%)
Mutual labels:  jupyter-notebook
Amazon Sagemaker Examples
Example 📓 Jupyter notebooks that demonstrate how to build, train, and deploy machine learning models using 🧠 Amazon SageMaker.
Stars: ✭ 6,346 (+908.9%)
Mutual labels:  jupyter-notebook
Kalman
Some Python Implementations of the Kalman Filter
Stars: ✭ 619 (-1.59%)
Mutual labels:  jupyter-notebook
Anchor
Code for "High-Precision Model-Agnostic Explanations" paper
Stars: ✭ 629 (+0%)
Mutual labels:  jupyter-notebook
Kmcuda
Large scale K-means and K-nn implementation on NVIDIA GPU / CUDA
Stars: ✭ 627 (-0.32%)
Mutual labels:  jupyter-notebook
Tutorials
A series of machine learning tutorials for Torch7
Stars: ✭ 621 (-1.27%)
Mutual labels:  jupyter-notebook

Note: We've moved the active work on this repo to https://github.com/dmlc/mxnet/tree/master/docs. If you are looking for docs related to a new, dynamic, elegant and easy to use imperative interface for MXNet, check out http://gluon.mxnet.io/ or https://github.com/zackchase/mxnet-the-straight-dope

MXNet Notebooks

This repo contains various notebooks ranging from basic usages of MXNet to state-of-the-art deep learning applications.

How to use

Python

The python notebooks are written in Jupyter.

  • View We can view the notebooks on either github or nbviewer. But note that the former may be failed to render a page, while the latter has delays to view the recent changes.

  • Run We can run and modify these notebooks if both mxnet and jupyter are installed. Here is an example script to install all these packages on Ubuntu.

    If you have a AWS account, here is an easier way to run the notebooks:

    1. Launch a g2.2xlarge or p2.2xlarge instance by using AMI ami-fe217de9 on N. Virginia (us-east-1). This AMI is built by using this script. Remember to open the TCP port 8888 in the security group.

    2. Once launch is succeed, setup the following variable with proper value

      export HOSTNAME=ec2-107-22-159-132.compute-1.amazonaws.com
      export PERM=~/Downloads/my.pem
    
    1. Now we should be able to ssh to the machine by

        chmod 400 $PERM
        ssh -i $PERM -L 8888:localhost:8888 [email protected]
      

      Here we forward the EC2 machine's 8888 port into localhost.

    2. Clone this repo on the EC2 machine and run jupyter

        git clone https://github.com/dmlc/mxnet-notebooks
        jupyter notebook
      

      We can optional run ~/update_mxnet.sh to update MXNet to the newest version.

    3. Now we are able to view and edit the notebooks on the browser using the URL: http://localhost:8888/tree/mxnet-notebooks/python/outline.ipynb

How to develop

Some general guidelines

  • A notebook covers a single concept or application
  • Try to be as basic as possible. Put advanced usages at the end, and allow reader to skip it.
  • Keep the cell outputs on the notebooks so that readers can see the results without running
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].