Skip to content

Commit 7773d5f

Browse files
authored
Merge branch 'main' into svekars-patch-54
2 parents 54da101 + f3d9750 commit 7773d5f

14 files changed

Lines changed: 1275 additions & 15 deletions

.ci/docker/requirements.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ tqdm==4.66.1
2323
numpy==1.24.4
2424
matplotlib
2525
librosa
26-
torch==2.9
26+
torch==2.10
2727
torchvision
2828
torchdata
2929
networkx
@@ -49,6 +49,9 @@ onnxscript>=0.2.2
4949
onnxruntime
5050
evaluate
5151
accelerate>=0.20.1
52+
git+https://github.com/facebookresearch/mosaic.git
53+
altair
54+
omegaconf
5255

5356
importlib-metadata==6.8.0
5457

.github/workflows/build-tutorials-nightly.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@ name: Build tutorials (nightly/test)
1515
# download the binaries in .jenkins/build.sh.
1616
on:
1717
# Only main branch for now. Uncomment the below line to enable it on PRs.
18-
pull_request:
18+
# pull_request:
1919

2020
# Comment out the below line to disable on the main branch
21-
push:
22-
branches:
23-
- main
21+
# push:
22+
# branches:
23+
# - main
24+
workflow_dispatch:
2425

2526
concurrency:
2627
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}-${{ github.event_name == 'workflow_dispatch' }}-${{ github.event_name == 'schedule' }}

.jenkins/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ fi
3636

3737
# Nightly - pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu102/torch_nightly.html
3838
# Install 2.5 to merge all 2.4 PRs - uncomment to install nightly binaries (update the version as needed).
39-
sudo pip uninstall -y torch torchvision torchaudio torchtext torchdata
40-
pip3 install torch==2.10.0 torchvision torchaudio --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu130
39+
# sudo pip uninstall -y torch torchvision torchaudio torchtext torchdata
40+
#pip3 install torch==2.10.0 torchvision torchaudio --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu130
4141
# Install two language tokenizers for Translation with TorchText tutorial
4242
pip install https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.4.0/en_core_web_sm-3.4.0-py3-none-any.whl
4343

345 KB
Loading
164 KB
Loading
278 KB
Loading
140 KB
Loading
188 KB
Loading
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Finetuning Torchvision Models
22
=============================
33

4-
This tutorial has been moved to https://pytorch.org/tutorials/intermediate/torchvision_tutorial.html
4+
This tutorial has been moved to https://pytorch.org/tutorials/beginner/transfer_learning_tutorial.html
55

66
It will redirect in 3 seconds.
77

88
.. raw:: html
99

10-
<meta http-equiv="Refresh" content="3; url='https://pytorch.org/tutorials/intermediate/torchvision_tutorial.html'" />
10+
<meta http-equiv="Refresh" content="3; url='https://pytorch.org/tutorials/beginner/transfer_learning_tutorial.html'" />

0 commit comments

Comments
 (0)