Skip to content

Commit

Permalink
[DOC Update ] fix notebook launch in README.md (#213)
Browse files Browse the repository at this point in the history
* [DOC Update ] fix notebook launch in README.md

We do not need to expose network and command to launch notebook is incorrect.

* Update README.md

Add --ipc=host which is required for Megatron
  • Loading branch information
manjunathshiva authored Oct 14, 2024
1 parent c2805e3 commit 6714edf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions finetuning/Gemma/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ docker pull nvcr.io/nvidia/nemo:24.01.gemma
The best way to run this notebook is from within the container. You can do that by launching the container with the following command

```bash
docker run -it --rm --gpus all --ipc host --network host -v $(pwd):/workspace nvcr.io/nvidia/nemo:24.01.gemma
docker run -it --rm --gpus all --ipc=host -p 8888:8888 -v $(pwd):/workspace nvcr.io/nvidia/nemo:24.01.gemma
```

Then, from within the container, start the jupyter server with

```bash
jupyter lab --no-browser --port=8080 --allow-root --ip 0.0.0.0
```
jupyter lab --ip 0.0.0.0 --no-browser --allow-root
```

0 comments on commit 6714edf

Please sign in to comment.