Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.

Commit f15957e

Browse files
committed
bump up tune version
1 parent 148d4ff commit f15957e

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

install/install_requirements.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,6 @@ PYTORCH_NIGHTLY_VERSION=dev20240901
5252
# Nightly version for torchvision
5353
VISION_NIGHTLY_VERSION=dev20240901
5454

55-
# Nightly version for torchtune
56-
TUNE_NIGHTLY_VERSION=dev20240916
57-
58-
5955
# Uninstall triton, as nightly will depend on pytorch-triton, which is one and the same
6056
(
6157
set -x
@@ -76,7 +72,6 @@ fi
7672
REQUIREMENTS_TO_INSTALL=(
7773
torch=="2.5.0.${PYTORCH_NIGHTLY_VERSION}"
7874
torchvision=="0.20.0.${VISION_NIGHTLY_VERSION}"
79-
torchtune=="0.3.0.${TUNE_NIGHTLY_VERSION}"
8075
)
8176

8277
# Install the requirements. --extra-index-url tells pip to look for package
@@ -92,6 +87,12 @@ REQUIREMENTS_TO_INSTALL=(
9287
$PIP_EXECUTABLE install torchao=="0.5.0"
9388
)
9489

90+
# Rely on the latest tochtune for flamingo support
91+
(
92+
set -x
93+
$PIP_EXECUTABLE install git+https://github.com/pytorch/torchtune.git@18efc81dda1c537bb7c25058ff059b4623ccff58
94+
)
95+
9596
if [[ -x "$(command -v nvidia-smi)" ]]; then
9697
(
9798
set -x

0 commit comments

Comments
 (0)