What you will find here is a curated collection of ML Recipes: ready-to-use examples, best practices, and learning materials available to you in the form of interactive environments that run on Neuro Platform.
Using ML Recipes, you can:
- Run state of the art (SOTA) deep learning models for a variety of applied tasks.
- Interact with the results and extend the solution.
- Upload data and download the results using a desktop or mobile device.
- Make your experiments reproducible.
You have two options of how you might wish to use our recipes. You can sign up as free tier user and experiment with the recipes within our managed installation of the platform. You can also install Neuro into your AWS, GCP, or Azure cloud account or on-perm GPU rack and use the recipes there.
Object detection. An end to end object detection pipeline for objects represented in the Common Objects in Context (COCO) dataset that allows you to evaluate performance on real life images and to add new object classes.
Pediatric Bone Age Assessment. This recipe demonstrates the estimation of the age of the child from the X-ray image of the left hand from the wrist to the fingertips. It is based on an approach described in "Paediatric Bone Age Assessment Using Deep Convolutional Neural Networks" by V. Iglovikov, A. Rakhlin, A. Kalinin and A. Shvets, 1, 2.
Hierarchical Attention. Based on highly cited paper Hierarchical Attention Networks for Document Classification (Z. Yang et al.), published in 2017, this recipe demonstrates how to apply this two-step architecture to sentiment classification.
MIDI Generator. This recipe demonstrates how to generate MIDI files from scratch and continue existing MIDI files. Warning: the recipe contains very catchy notebook. Don't forget to watch your surroundings!
Deep Q-Learning. This recipe shows a rather simplistic approach to reinforcement learning (DQN) in one of the traditional environment: Mountain Car. It is an excellent starting point to dive into Deep Reinforcement Learning.
- Familiarity with working with data in Python.
- Familiarity with machine learning concepts (such as training and test sets).
- Some experience with PyTorch and neural networks is helpful.
To work with ML Recipes, you need to install the Neuro Platform CLI.
pip install -U neuromation
neuro login
Paste the above in a macOS, Windows, or Linux terminal prompt. This command automatically installs the Neuro CLI and brings you to the login screen of Neuro Platform.
The Neuro Platform CLI requires Python 3.7 to be installed. We suggest installing Anaconda Python 3.7 Distribution. On some distributions, you might have to run pip3 install -U neuromation
.
Choose an ML Recipe from the list above, clone the corresponding repository and follow the instructions from that recipe's README.