-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add first draft of deepspeed example
- Loading branch information
1 parent
2c34f38
commit 06b2cf9
Showing
3 changed files
with
856 additions
and
0 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
integrations/model-training/deepspeed/hello-world-bert/README.md
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,30 @@ | ||
# DeepSpeed integration with Comet.ml | ||
|
||
[DeepSpeed](TODO) is a TODO. | ||
|
||
|
||
|
||
## Documentation | ||
|
||
For more information on using and configuring the DeepSpeed integration, see: [https://www.comet.com/docs/v2/integrations/ml-frameworks/deepspeed/](https://www.comet.com/docs/v2/integrations/ml-frameworks/TODO) | ||
|
||
## See it | ||
|
||
Take a look at this [public Comet Project](TODO). | ||
|
||
## Setup | ||
|
||
Install dependencies | ||
|
||
```bash | ||
python -m pip install -r requirements.txt | ||
``` | ||
|
||
## Run the example | ||
|
||
This example is based on official example from [DeepSpeed](https://github.com/microsoft/DeepSpeedExamples/tree/master/training/HelloDeepSpeed). | ||
|
||
|
||
```bash | ||
deepspeed train_bert_ds.py --checkpoint_dir . | ||
``` |
11 changes: 11 additions & 0 deletions
11
integrations/model-training/deepspeed/hello-world-bert/requirements.txt
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,11 @@ | ||
comet_ml | ||
datasets | ||
deepspeed | ||
fire | ||
loguru | ||
pytz | ||
sh | ||
tensorboard | ||
torch | ||
tqdm | ||
transformers |
Oops, something went wrong.