Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
fixed -- in execution commands
  • Loading branch information
jakubczakon authored May 9, 2018
1 parent 4becade commit 5d6da2a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ $ neptune login
5. Prepare the data:

```bash
$ neptune experiment run main.py prepare_metadata \
$ neptune experiment run main.py -- prepare_metadata \
--train_data \
--valid_data \
--test_data
Expand All @@ -29,7 +29,7 @@ $ neptune experiment run main.py prepare_metadata \
```bash
$ neptune login
$ neptune experiment run \
main.py train_evaluate_predict --pipeline_name unet --chunk_size 5000
main.py -- train_evaluate_predict --pipeline_name unet --chunk_size 5000
```

7. check your leaderboard score!
Expand Down Expand Up @@ -66,7 +66,7 @@ $ neptune data upload YOUR/DATA/FOLDER
```bash
$ neptune login
$ neptune experiment run \
main.py train_evaluate_predict --pipeline_name unet --chunk_size 5000
main.py -- train_evaluate_predict --pipeline_name unet --chunk_size 5000
```

* cloud via neptune
Expand All @@ -76,7 +76,7 @@ $ neptune data upload YOUR/DATA/FOLDER
$ neptune experiment send --config neptune.yaml \
--worker gcp-large \
--environment pytorch-0.2.0-gpu-py3 \
main.py train_evaluate_predict --pipeline_name solution_1 --chunk_size 5000
main.py -- train_evaluate_predict --pipeline_name solution_1 --chunk_size 5000
```

* local pure python
Expand Down

0 comments on commit 5d6da2a

Please sign in to comment.