Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch: hf-pt-train-1.13 for gevent and deepseed #4358

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
6 changes: 3 additions & 3 deletions dlc_developer_config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ deep_canary_mode = false
[build]
# Add in frameworks you would like to build. By default, builds are disabled unless you specify building an image.
# available frameworks - ["autogluon", "huggingface_tensorflow", "huggingface_pytorch", "huggingface_tensorflow_trcomp", "huggingface_pytorch_trcomp", "pytorch_trcomp", "tensorflow", "mxnet", "pytorch", "stabilityai_pytorch"]
build_frameworks = []
build_frameworks = ["huggingface_pytorch"]

# By default we build both training and inference containers. Set true/false values to determine which to build.
build_training = true
build_inference = true
build_inference = false

# Set do_build to "false" to skip builds and test the latest image built by this PR
# Note: at least one build is required to set do_build to "false"
Expand Down Expand Up @@ -107,7 +107,7 @@ dlc-pr-autogluon-training = ""

# HuggingFace Training
dlc-pr-huggingface-tensorflow-training = ""
dlc-pr-huggingface-pytorch-training = ""
dlc-pr-huggingface-pytorch-training = "huggingface/pytorch/training/buildspec-1-13.yml"

# Training Compiler
dlc-pr-huggingface-pytorch-trcomp-training = ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ RUN pip install --no-cache-dir \
multiprocess==0.70.14 \
dill==0.3.6 \
sagemaker==2.227.0 \
deepspeed==0.15.2 \
evaluate \
gevent~=23.9.0 \
gevent~=24.10.1 \
pyarrow~=14.0.1

RUN apt-get update \
Expand Down
Loading