Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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: 0 additions & 4 deletions .gitmodules

This file was deleted.

1 change: 0 additions & 1 deletion DeepSpeedExamples
Submodule DeepSpeedExamples deleted from 36212d
9 changes: 9 additions & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# DeepSpeed Examples

If you are looking for examples using DeepSpeed please see the following resources:

1. [DeepSpeedExamples](https://github.com/microsoft/DeepSpeedExamples)
2. [Megatron-DeepSpeed](https://github.com/microsoft/Megatron-DeepSpeed)
3. [DeepSpeed + AzureML](https://github.com/Azure/azureml-examples/tree/main/python-sdk/workflows/train/deepspeed)
4. [DeepSpeed + Hugging Face Transformers Integration](https://huggingface.co/docs/transformers/main_classes/deepspeed)
5. [DeepSpeed + PyTorch Lightning](https://pytorch-lightning.readthedocs.io/en/latest/api/pytorch_lightning.utilities.deepspeed.html)
16 changes: 12 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,10 +281,18 @@ def create_dir_symlink(src, dest):
},
install_requires=install_requires,
extras_require=extras_require,
packages=find_packages(exclude=["docker",
"third_party",
"csrc",
"op_builder"]),
packages=find_packages(exclude=[
"azure",
"csrc",
"docker",
"docs",
"examples",
"op_builder",
"release",
"requirements",
"scripts",
"tests"
]),
include_package_data=True,
scripts=[
'bin/deepspeed',
Expand Down