Skip to content

Latest commit

 

History

History
59 lines (42 loc) · 2.55 KB

README.md

File metadata and controls

59 lines (42 loc) · 2.55 KB

Neptune Examples

Overview

Examples for Neptune.

To run the following examples you need to have Neptune CLI installed.

Python Examples

Getting Started

The goal of this example is to create a simple parameterizable job that generates sine and cosine as functions of time (in seconds), with the provided amplitude and sampling_rate. The full description of the example can be found in the documentation.

Run Command

neptune run main.py --config config.yaml --dump-dir-url my_dump_dir

Handwritten Digits Recognition

This example is an adaptation of source code from the deep learning Keras library which shows utilization of Neptune features. The example consists of a single Python file and uses Keras to train and evaluate a convolutional neural network that recognizes handwritten digits. Full description of the example can be found in the documentation.

Additional Requirements

Run Command

neptune run mnist_cnn_neptune.py --config config.yaml --dump-dir-url mnist_cnn_neptune_output -- --kernel_size 5

Diabetes Progression Prediction

This example is an adaptation of Linear Regression example from the scikit-learn machine learning library which shows utilization of Neptune features. The example consists of a single Python file using scikit-learn to train and evaluate a simple linear regression model that predicts disease progression of diabetes patients. The full description of the example can be found in the documentation.

Additional Requirements

Run Command

neptune run plot_ols_neptune.py --config config.yaml --dump-dir-url plot_ols_neptune_output -- --feature_index 2