-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simplify and relax dependencies (Take 2) (#818)
* Remove unused einops dependency * Make Weights & Biases monitoring optional - Move `wandb` to `./requirements/requirements-wandb.txt` - Clean up `./deepy.py` - Make GPT-NeoX not explode if `wandb` is not installed. - Tell the user when `wandb` is not importable and explain how to fix. - Remove implicit dependence on `shortuuid`. - Ensure that `wandb` is installed in Dockerfile. * Relax many dependencies * Remove usage of uuid.uuid4() * Update Dockerfile Add flash attention install * Update logging.py to pass when wandb is unimportable --------- Co-authored-by: Quentin Anthony <[email protected]>
- Loading branch information
1 parent
e897c23
commit 9610391
Showing
9 changed files
with
67 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
autopep8==1.5.6 | ||
clang-format==13.0.1 | ||
pre-commit~=2.17.0 | ||
pytest==6.2.3 | ||
pytest-cov==2.11.1 | ||
pytest-forked==1.3.0 | ||
autopep8>=1.5.6 | ||
clang-format>=13.0.1 | ||
pre-commit>=2.17.0 | ||
pytest>=6.2.3 | ||
pytest-cov>=2.11.1 | ||
pytest-forked>=1.3.0 | ||
pytest-xdist | ||
transformers~=4.16.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
cupy-cuda111==8.6.0 | ||
cupy-cuda111>=8.6.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
wandb>=0.10.28 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
einops==0.3.0 | ||
ftfy==6.0.1 | ||
git+https://github.com/EleutherAI/lm_dataformat.git@4eec05349977071bf67fc072290b95e31c8dd836 | ||
huggingface_hub==0.11.0 | ||
lm_eval==0.3.0 | ||
mpi4py==3.0.3 | ||
numpy==1.22.0 | ||
pybind11==2.6.2 | ||
deepspeed | ||
ftfy>=6.0.1 | ||
git+https://github.com/EleutherAI/lm_dataformat.git@4eec05349977071bf67fc072290b95e31c8dd836 | ||
huggingface_hub>=0.11.0 | ||
lm_eval>=0.3.0 | ||
mpi4py>=3.0.3 | ||
numpy>=1.22.0 | ||
pybind11>=2.6.2 | ||
regex | ||
sentencepiece | ||
six | ||
tiktoken==0.1.2 | ||
tokenizers==0.12.1 | ||
transformers~=4.24.0 | ||
wandb==0.10.28 | ||
tiktoken>=0.1.2 | ||
tokenizers>=0.12.1 | ||
transformers>=4.24.0 |