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

Fix a typo in the quickstart #627

Open
wants to merge 1 commit into
base: master
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
4 changes: 2 additions & 2 deletions docs/user/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ with tqdm() as progressbar:


As you can see, this code is regular PyTorch with one notable exception: it wraps your regular optimizer with a
`hivemind.Optimizer`. This optimizer uses `DHT` to find other peers and tries to exchange parameters them. When you run
the code (please do so), you will see the following output:
`hivemind.Optimizer`. This optimizer uses `DHT` to find other peers and tries to exchange parameters with them. When
you run the code (please do so), you will see the following output:

```shell
To join the training, use initial_peers = ['/ip4/127.0.0.1/tcp/XXX/p2p/YYY']
Expand Down
Loading