Skip to content
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
98 changes: 97 additions & 1 deletion src/sagemaker/image_uri_config/huggingface.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
"4.36": "4.36.0",
"4.46": "4.46.1",
"4.48": "4.48.0",
"4.49": "4.49.0"
"4.49": "4.49.0",
"4.55": "4.55.0",
"4.56": "4.56.2"
},
"versions": {
"4.4.2": {
Expand Down Expand Up @@ -1162,6 +1164,100 @@
"gpu": "cu124-ubuntu22.04"
}
}
},
"4.55.0": {
"version_aliases": {
"pytorch2.7": "pytorch2.7.1"
},
"pytorch2.7.1": {
"py_versions": [
"py312"
],
"registries": {
"af-south-1": "626614931356",
"il-central-1": "780543022126",
"ap-east-1": "871362719292",
"ap-northeast-1": "763104351884",
"ap-northeast-2": "763104351884",
"ap-northeast-3": "364406365360",
"ap-south-1": "763104351884",
"ap-southeast-1": "763104351884",
"ap-southeast-2": "763104351884",
"ap-southeast-3": "907027046896",
"ca-central-1": "763104351884",
"cn-north-1": "727897471807",
"cn-northwest-1": "727897471807",
"eu-central-1": "763104351884",
"eu-north-1": "763104351884",
"eu-west-1": "763104351884",
"eu-west-2": "763104351884",
"eu-west-3": "763104351884",
"eu-south-1": "692866216735",
"me-south-1": "217643126080",
"me-central-1": "914824155844",
"sa-east-1": "763104351884",
"us-east-1": "763104351884",
"us-east-2": "763104351884",
"us-gov-east-1": "446045086412",
"us-gov-west-1": "442386744353",
"us-iso-east-1": "886529160074",
"us-isob-east-1": "094389454867",
"us-west-1": "763104351884",
"us-west-2": "763104351884",
"ca-west-1": "204538143572"
},
"repository": "huggingface-pytorch-training",
"container_version": {
"gpu": "cu128-ubuntu22.04"
}
}
},
"4.56.2": {
"version_aliases": {
"pytorch2.8": "pytorch2.8.0"
},
"pytorch2.8.0": {
"py_versions": [
"py312"
],
"registries": {
"af-south-1": "626614931356",
"il-central-1": "780543022126",
"ap-east-1": "871362719292",
"ap-northeast-1": "763104351884",
"ap-northeast-2": "763104351884",
"ap-northeast-3": "364406365360",
"ap-south-1": "763104351884",
"ap-southeast-1": "763104351884",
"ap-southeast-2": "763104351884",
"ap-southeast-3": "907027046896",
"ca-central-1": "763104351884",
"cn-north-1": "727897471807",
"cn-northwest-1": "727897471807",
"eu-central-1": "763104351884",
"eu-north-1": "763104351884",
"eu-west-1": "763104351884",
"eu-west-2": "763104351884",
"eu-west-3": "763104351884",
"eu-south-1": "692866216735",
"me-south-1": "217643126080",
"me-central-1": "914824155844",
"sa-east-1": "763104351884",
"us-east-1": "763104351884",
"us-east-2": "763104351884",
"us-gov-east-1": "446045086412",
"us-gov-west-1": "442386744353",
"us-iso-east-1": "886529160074",
"us-isob-east-1": "094389454867",
"us-west-1": "763104351884",
"us-west-2": "763104351884",
"ca-west-1": "204538143572"
},
"repository": "huggingface-pytorch-training",
"container_version": {
"gpu": "cu129-ubuntu22.04"
}
}
}
}
},
Expand Down
2 changes: 2 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,8 @@ def huggingface_pytorch_training_version(huggingface_training_version):

@pytest.fixture(scope="module")
def huggingface_pytorch_training_py_version(huggingface_pytorch_training_version):
if Version(huggingface_pytorch_training_version) >= Version("2.6"):
return "py312"
if Version(huggingface_pytorch_training_version) >= Version("2.3"):
return "py311"
if Version(huggingface_pytorch_training_version) >= Version("2.0"):
Expand Down
Loading