Skip to content

Commit

Permalink
switch order of examples
Browse files Browse the repository at this point in the history
  • Loading branch information
svlandeg committed Mar 11, 2024
1 parent caecbd2 commit 53a94e4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/tutorial/parameter-types/enum.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,21 @@ $ python main.py --network conv

Training neural network of type: conv

// Note that enums are case sensitive by default
$ python main.py --network CONV
// Invalid value
$ python main.py --network capsule

Usage: main.py [OPTIONS]
Try "main.py --help" for help.

Error: Invalid value for '--network': invalid choice: CONV. (choose from simple, conv, lstm)
Error: Invalid value for '--network': invalid choice: capsule. (choose from simple, conv, lstm)

// Invalid value
$ python main.py --network capsule
// Note that enums are case sensitive by default
$ python main.py --network CONV

Usage: main.py [OPTIONS]
Try "main.py --help" for help.

Error: Invalid value for '--network': invalid choice: capsule. (choose from simple, conv, lstm)
Error: Invalid value for '--network': invalid choice: CONV. (choose from simple, conv, lstm)
```

</div>
Expand Down

0 comments on commit 53a94e4

Please sign in to comment.