Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed "--help" output in README.md #1304

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions mnist_hogwild/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,16 @@ The main.py script accepts the following arguments:
```bash
optional arguments:
-h, --help show this help message and exit
--batch_size input batch_size for training (default:64)
--testing_batch_size input batch size for testing (default: 1000)
--epochs EPOCHS number of epochs to train (default: 1000)
--lr LR learning rate (default: 0.03)
--batch-size input batch_size for training (default: 64)
--test-batch-size input batch size for testing (default: 1000)
--epochs EPOCHS number of epochs to train (default: 10)
--lr LR learning rate (default: 0.01)
--momentum SGD momentum (default: 0.5)
--seed SEED random seed (default: 1)
--mps enables macos GPU training
--save_model For saving the current Model
--log_interval how many batches to wait before logging training status
--num_process how many training processes to use (default: 2)
--save_model save the trained model to state_dict
--log-interval how many batches to wait before logging training status (default: 10)
--num-processes how many training processes to use (default: 2)
--cuda enables CUDA training
--mps enables macos GPU training
--dry-run quickly check a single pass
--save-model For Saving the current Model
```