This repository has been archived by the owner on Jun 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 58
Getting started: Neptune Cloud
Kamil A. Kaczmarek edited this page Jun 22, 2018
·
2 revisions
Neptune cloud is the easiest way to start experimenting. Environment is already prepared, hence you care only about experiments.
- clone this repo
$ git clone https://github.com/neptune-ml/kaggle-toxic-starter.git
- register on the neptune.ml
- install neptune-cli
$ pip3 install neptune-cli
- log in to neptune cloud via command line
$ neptune login
-
create neptune project
- go to the neptune site and log in
- create new project named
toxic
. To do it follow the linkProjects
(top bar, left side), then clickNew project
button. This action will generate project-keyTOX
, which is already listed in theneptune_config.yaml
.
-
run first experiment
$ neptune send experiment_manager.py --environment keras-2.0-gpu-py3 --worker gcp-gpu-medium --config neptune_config.yaml -- train_evaluate_predict_pipeline --pipeline_name glove_lstm
Now you can observe the progress of your experiment on Neptune dashboard. When its done, you can collect output from the Browse Files (left bar in the Neptune dashboard).
Check Neptune documentation for more options and our Wiki for detailed explanation of this starter code.
- Entire dataset is already uploaded to the Neptune Cloud (
/public
directory), and ready to use. - Moreover the weights of the
glove840
model are uploaded as well (/public
directory). You are free to use this model in your solution.