Skip to content

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 636639514
Change-Id: I31452681ea921d17fc770618dae936311454e292
  • Loading branch information
peterjliu committed May 26, 2024
1 parent f6ad9fb commit e759c22
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ Currently we use:
* flax for modules
* optax for optimization
* orbax for checkpointing
* pygrain for checkpointing training data iterator
* tf.data (soon to be deprecated) and TFDS for data
* pygrain for data
* ConfigDict for hyper-parameters.

Not currently supported or left out for simplicity:
Expand Down Expand Up @@ -61,11 +60,13 @@ pip install -e .
pip install pytest pytest-xdist
PYTHONHASHSEED=0 pytest -n auto -rA
# Run training.
# Run training example:
python nanodo/main.py \
--config=nanodo/configs/default.py \
--config.workdir=/tmp/nanodo_workdir \
--config.vocab_path=tests/testdata/sentencepiece_cc_all.32000.100extra-sentencepiece.model
--config.vocab_path=tests/testdata/sentencepiece_cc_all.32000.100extra-sentencepiece.model \
--config.model.L=128 \
--config.batch_size=2
```


5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,9 @@ dependencies = [
"tensorflow>=2.16.1",
]

# TODO: confirm locations and URLs
[project.urls]
homepage = "https://github.com/google-research/nanodo"
repository = "https://github.com/google-research/nanodo"
homepage = "https://github.com/google-deepmind/nanodo"
repository = "https://github.com/google-deepmind/nanodo"
documentation = "https://nanodo.readthedocs.io/"

[project.optional-dependencies]
Expand Down

0 comments on commit e759c22

Please sign in to comment.