+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/index.html b/index.html
new file mode 100644
index 000000000..097b09e97
--- /dev/null
+++ b/index.html
@@ -0,0 +1,609 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Production Ready
+
TorchScript로 eager 모드와 graph 모드를 손쉽게 전환하고, TorchServe로 생산성을 높혀보세요.
+
+
+
+
Distributed Training
+
torch.distributed 백엔드로 연구 및 상용에서 확장 가능한 분산 학습 및 성능 최적화할 수 있습니다.
+
+
+
+
Robust Ecosystem
+
풍부한 툴과 라이브러리 생태계로 PyTorch를 확장하고 비전, NLP 등의 분야에서 개발합니다.
+
+
+
+
Cloud Support
+
PyTorch는 주요 클라우드 플랫폼에서 쉽게 개발하고 간편하게 확장(scaling)할 수 있습니다.
+
+
+
+
+
+
+
+
+
+
+
PyTorch 설치하기
+
+
+ 사용 환경을 선택하고 설치 명령을 복사해서 실행해 보세요. Stable 버전은 테스트 및 지원되고 있는 가장 최근의 PyTorch 버전으로, 대부분의 사용자에게 적합합니다.
+ Preview 버전은 아직 완전히 테스트나 지원이 되지 않는 최신 버전으로 매일 밤 업데이트됩니다. 사용 중인 패키지 매니저에 따라 아래의 사전 요구사항(예: numpy) 이 충족되었는지 확인해 주세요.
+ 모든 의존성을 설치할 수 있는 Anaconda를 패키지 매니저로 추천합니다. 이전 버전의 PyTorch도 설치할 수 있습니다 .
+ LibTorch는 C++에서만 지원합니다.
+
+
+ 참고:
+ 최신 버전의 PyTorch를 사용하기 위해서는 Python 3.8 이상이 필요합니다. 자세한 내용은 Python 섹션 을 참고해주세요.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
conda install pytorch torchvision -c pytorch
+
+
+
+
+
+
+ 이전 버전의 PyTorch
+
+
+
+
+
클라우드에서 빠르게 시작하기
+
+
많이 쓰이는 클라우드 플랫폼과 머신러닝 서비스를 통해서 PyTorch를 빠르게 시작해보세요.
+
+
+
+
+
+ Amazon Web Services
+
+
+
+
+
+
+
+
+
+ Google Cloud Platform
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
PyTorchKorea @ GitHub
+
파이토치 한국 사용자 모임을 GitHub에서 만나보세요.
+
GitHub로 이동
+
+
+
+
한국어 튜토리얼
+
한국어로 번역 중인 파이토치 튜토리얼을 만나보세요.
+
튜토리얼로 이동
+
+
+
+
커뮤니티
+
다른 사용자들과 의견을 나누고, 도와주세요!
+
커뮤니티로 이동
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/install.sh b/install.sh
new file mode 100755
index 000000000..0d32dcb7e
--- /dev/null
+++ b/install.sh
@@ -0,0 +1,23 @@
+#!/bin/bash
+set -e
+
+. ~/miniconda3/etc/profile.d/conda.sh
+conda activate base
+
+conda install -y pytorch torchvision torchaudio -c pytorch-nightly
+
+conda install -y pytest
+
+# Dependencies required to load models
+conda install -y regex pillow tqdm boto3 requests numpy\
+ h5py scipy matplotlib unidecode ipython pyyaml
+conda install -y -c conda-forge librosa inflect
+
+pip install -q fastBPE sacremoses sentencepiece subword_nmt editdistance
+pip install -q visdom mistune filelock tokenizers packaging pandas
+pip install -q omegaconf timm seaborn importlib_metadata huggingface_hub
+pip install -q hydra-core opencv-python fvcore
+pip install -q --upgrade google-api-python-client
+pip install pytorchvideo
+pip install -q prefetch_generator # yolop
+pip install -q pretrainedmodels efficientnet_pytorch # hybridnets
diff --git a/install_basics.sh b/install_basics.sh
new file mode 100755
index 000000000..c1244d1cb
--- /dev/null
+++ b/install_basics.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+set -e
+
+# Install basics
+sudo apt-get install vim
+
+# Install miniconda
+CONDA=https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
+filename=$(basename "$CONDA")
+wget "$CONDA"
+chmod +x "$filename"
+./"$filename" -b -u
+
+# Force to use python3.8
+. ~/miniconda3/etc/profile.d/conda.sh
+conda activate base
+conda install -y python=3.8
+
+
diff --git a/install_nightlies.sh b/install_nightlies.sh
new file mode 100755
index 000000000..e93f5c1e8
--- /dev/null
+++ b/install_nightlies.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+set -e
+
+. ~/miniconda3/etc/profile.d/conda.sh
+conda activate base
+conda install -y pytorch torchtext torchvision -c pytorch-nightly
+
diff --git a/intel-logo.png b/intel-logo.png
new file mode 100644
index 000000000..2d022a97c
Binary files /dev/null and b/intel-logo.png differ
diff --git a/maintainers/index.html b/maintainers/index.html
new file mode 100644
index 000000000..478e435e8
--- /dev/null
+++ b/maintainers/index.html
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/midas_samples.png b/midas_samples.png
new file mode 100644
index 000000000..921e290ed
Binary files /dev/null and b/midas_samples.png differ
diff --git a/mobile.html b/mobile.html
new file mode 100644
index 000000000..4c7fa1df0
--- /dev/null
+++ b/mobile.html
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/mobilenet_v2_1.png b/mobilenet_v2_1.png
new file mode 100644
index 000000000..55fd2a18b
Binary files /dev/null and b/mobilenet_v2_1.png differ
diff --git a/mobilenet_v2_2.png b/mobilenet_v2_2.png
new file mode 100644
index 000000000..bc184fa04
Binary files /dev/null and b/mobilenet_v2_2.png differ
diff --git a/model_page.png b/model_page.png
new file mode 100644
index 000000000..35fc96966
Binary files /dev/null and b/model_page.png differ
diff --git a/naverd978eaf94b3bcd2b77b2f531d87d8831.html b/naverd978eaf94b3bcd2b77b2f531d87d8831.html
new file mode 100644
index 000000000..0109aa488
--- /dev/null
+++ b/naverd978eaf94b3bcd2b77b2f531d87d8831.html
@@ -0,0 +1,2 @@
+Naver Search Advisor, 사이트 인증 파일
+https://searchadvisor.naver.com/
diff --git a/ncf_diagram.png b/ncf_diagram.png
new file mode 100644
index 000000000..ff27ccbfd
Binary files /dev/null and b/ncf_diagram.png differ
diff --git a/netlify.png b/netlify.png
new file mode 100644
index 000000000..513fcd2b9
Binary files /dev/null and b/netlify.png differ
diff --git a/news/news-item-0/index.html b/news/news-item-0/index.html
new file mode 100644
index 000000000..8b1378917
--- /dev/null
+++ b/news/news-item-0/index.html
@@ -0,0 +1 @@
+
diff --git a/news/news-item-1/index.html b/news/news-item-1/index.html
new file mode 100644
index 000000000..8b1378917
--- /dev/null
+++ b/news/news-item-1/index.html
@@ -0,0 +1 @@
+
diff --git a/news/news-item-2/index.html b/news/news-item-2/index.html
new file mode 100644
index 000000000..8b1378917
--- /dev/null
+++ b/news/news-item-2/index.html
@@ -0,0 +1 @@
+
diff --git a/news/news-item-3/index.html b/news/news-item-3/index.html
new file mode 100644
index 000000000..8b1378917
--- /dev/null
+++ b/news/news-item-3/index.html
@@ -0,0 +1 @@
+
diff --git a/nts-net.png b/nts-net.png
new file mode 100644
index 000000000..b7bd97b1e
Binary files /dev/null and b/nts-net.png differ
diff --git a/nvidia_logo.png b/nvidia_logo.png
new file mode 100644
index 000000000..41caa39c7
Binary files /dev/null and b/nvidia_logo.png differ
diff --git a/package.json b/package.json
new file mode 100644
index 000000000..9a40d8159
--- /dev/null
+++ b/package.json
@@ -0,0 +1,8 @@
+{
+ "dependencies": {
+ "anchor-js": "^4.1.1",
+ "bootstrap": "4.3.1",
+ "jquery": "^3.5.0",
+ "popper.js": "^1.14.3"
+ }
+}
diff --git a/pgan_celebaHQ.jpg b/pgan_celebaHQ.jpg
new file mode 100644
index 000000000..9fbcc4291
Binary files /dev/null and b/pgan_celebaHQ.jpg differ
diff --git a/pgan_mix.jpg b/pgan_mix.jpg
new file mode 100644
index 000000000..91959af4a
Binary files /dev/null and b/pgan_mix.jpg differ
diff --git a/pganlogo.png b/pganlogo.png
new file mode 100644
index 000000000..1b623f792
Binary files /dev/null and b/pganlogo.png differ
diff --git a/preview_hub.sh b/preview_hub.sh
new file mode 100755
index 000000000..f8e8a18c5
--- /dev/null
+++ b/preview_hub.sh
@@ -0,0 +1,28 @@
+#!/bin/bash
+
+PREVIEW_DIR=_preview
+
+# Clone pytorch.kr site source
+echo '1. hub-kr 저장소 빌드를 위해 PyTorch.KR 홈페이지 저장소를 복제합니다...'
+echo ' (기존에 복제한 저장소가 있으면 삭제 후 복제합니다.)'
+if [ -d $PREVIEW_DIR ]; then
+ rm -rf $PREVIEW_DIR
+fi
+
+git clone --recursive https://github.com/PyTorchKorea/pytorch.kr.git --depth 1 $PREVIEW_DIR
+echo ' => 완료'
+
+# Copy hub-kr files
+echo '2. hub-kr 저장소 빌드를 위해 파일들을 복사합니다...'
+cp *.md $PREVIEW_DIR/_hub
+cp images/* $PREVIEW_DIR/assets/images/
+echo ' => 완료'
+
+# Build pytorch.kr site for preview
+echo '3. PyTorch.KR 홈페이지를 빌드합니다...'
+echo ' 빌드가 되지 않는 경우 README.md 파일을 참조해주세요.'
+echo ' (ruby, nodejs 및 의존성 설치가 필요합니다.)'
+cd $PREVIEW_DIR
+rbenv local
+nvm use
+make serve
diff --git a/preview_hub_window.sh b/preview_hub_window.sh
new file mode 100644
index 000000000..c592145a3
--- /dev/null
+++ b/preview_hub_window.sh
@@ -0,0 +1,28 @@
+#!/bin/bash
+
+PREVIEW_DIR=_preview
+
+# Clone pytorch.kr site source
+echo '1. hub-kr 저장소 빌드를 위해 PyTorch.KR 홈페이지 저장소를 복제합니다...'
+echo ' (기존에 복제한 저장소가 있으면 삭제 후 복제합니다.)'
+if [ -d $PREVIEW_DIR ]; then
+ rm -rf $PREVIEW_DIR
+fi
+
+git clone --recursive https://github.com/PyTorchKorea/pytorch.kr.git --depth 1 $PREVIEW_DIR
+echo ' => 완료'
+
+# Copy hub-kr files
+echo '2. hub-kr 저장소 빌드를 위해 파일들을 복사합니다...'
+cp *.md $PREVIEW_DIR/_hub
+cp images/* $PREVIEW_DIR/assets/images/
+echo ' => 완료'
+
+# Build pytorch.kr site for preview
+echo '3. PyTorch.KR 홈페이지를 빌드합니다...'
+echo ' 빌드가 되지 않는 경우 README.md 파일을 참조해주세요.'
+echo ' (ruby, nodejs 및 의존성 설치가 필요합니다.)'
+cd $PREVIEW_DIR
+
+nvm use
+make serve
\ No newline at end of file
diff --git a/previous-versions.html b/previous-versions.html
new file mode 100644
index 000000000..45dfd693a
--- /dev/null
+++ b/previous-versions.html
@@ -0,0 +1,11 @@
+
+
+
+
Redirecting…
+
+
+
+
+
Redirecting…
+
Click here if you are not redirected.
+
diff --git a/proxylessnas.png b/proxylessnas.png
new file mode 100644
index 000000000..50fb554a5
Binary files /dev/null and b/proxylessnas.png differ
diff --git a/published_versions.json b/published_versions.json
new file mode 100644
index 000000000..84352501c
--- /dev/null
+++ b/published_versions.json
@@ -0,0 +1,5613 @@
+{
+ "latest_stable": "2.5.1",
+ "latest_lts": "lts-1.8.2",
+ "versions": {
+ "preview": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu121"
+ },
+ "cuda.z": {
+ "note": null,
+ "command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu124"
+ },
+ "rocm5.x": {
+ "note": null,
+ "command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/rocm6.2"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch-nightly -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch-nightly -c nvidia"
+ },
+ "cuda.z": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.4 -c pytorch-nightly -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch-nightly"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/nightly/cpu/libtorch-shared-with-deps-latest.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/nightly/cpu/libtorch-cxx11-abi-shared-with-deps-latest.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/nightly/cu118/libtorch-shared-with-deps-latest.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/nightly/cu118/libtorch-cxx11-abi-shared-with-deps-latest.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/nightly/cu121/libtorch-shared-with-deps-latest.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/nightly/cu121/libtorch-cxx11-abi-shared-with-deps-latest.zip"
+ }
+ },
+ "cuda.z": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/nightly/cu124/libtorch-shared-with-deps-latest.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/nightly/cu124/libtorch-cxx11-abi-shared-with-deps-latest.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/nightly/rocm6.2/libtorch-shared-with-deps-latest.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/nightly/rocm6.2/libtorch-cxx11-abi-shared-with-deps-latest.zip"
+ }
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu",
+ "default": true
+ },
+ "cuda.z": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch-nightly::pytorch torchvision torchaudio -c pytorch-nightly",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch-nightly::pytorch torchvision torchaudio -c pytorch-nightly",
+ "default": true
+ },
+ "cuda.z": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch-nightly::pytorch torchvision torchaudio -c pytorch-nightly",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "conda install pytorch-nightly::pytorch torchvision torchaudio -c pytorch-nightly",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch-nightly::pytorch torchvision torchaudio -c pytorch-nightly"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-arm64-latest.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-arm64-latest.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-arm64-latest.zip"
+ }
+ },
+ "cuda.z": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-arm64-latest.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-arm64-latest.zip"
+ }
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu121"
+ },
+ "cuda.z": {
+ "note": null,
+ "command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu124"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch-nightly -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch-nightly -c nvidia"
+ },
+ "cuda.z": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.4 -c pytorch-nightly -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch-nightly"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/nightly/cpu/libtorch-win-shared-with-deps-latest.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/nightly/cpu/libtorch-win-shared-with-deps-debug-latest.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/nightly/cu118/libtorch-win-shared-with-deps-latest.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/nightly/cu118/libtorch-win-shared-with-deps-debug-latest.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/nightly/cu121/libtorch-win-shared-with-deps-latest.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/nightly/cu121/libtorch-win-shared-with-deps-debug-latest.zip"
+ }
+ },
+ "cuda.z": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/nightly/cu124/libtorch-win-shared-with-deps-latest.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/nightly/cu124/libtorch-win-shared-with-deps-debug-latest.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "1.13.0": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu116"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm5.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/rocm5.2"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.6 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.13.0%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.13.0%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu116/libtorch-shared-with-deps-1.13.0%2Bcu116.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu116/libtorch-cxx11-abi-shared-with-deps-1.13.0%2Bcu116.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu117/libtorch-shared-with-deps-1.13.0%2Bcu117.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu117/libtorch-cxx11-abi-shared-with-deps-1.13.0%2Bcu117.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.2/libtorch-shared-with-deps-1.13.0%2Brocm5.2.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.2/libtorch-cxx11-abi-shared-with-deps-1.13.0%2Brocm5.2.zip"
+ }
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda.x": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.y": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ },
+ "cuda.y": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download default libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.13.0.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download default libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.13.0.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download default libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.13.0.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "default": true,
+ "versions": null
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu116"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu117"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.6 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-1.13.0%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-1.13.0%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu116/libtorch-win-shared-with-deps-1.13.0%2Bcu116.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu116/libtorch-win-shared-with-deps-debug-1.13.0%2Bcu116.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu117/libtorch-win-shared-with-deps-1.13.0%2Bcu117.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu117/libtorch-win-shared-with-deps-debug-1.13.0%2Bcu117.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "1.12.1": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cpu"
+ },
+ "cuda10.2": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu113"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu116"
+ },
+ "rocm5.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/rocm5.1.1"
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch"
+ },
+ "cuda.y": {
+ "note": "
NOTE: 'conda-forge' channel is required for cudatoolkit 11.6",
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.6 -c pytorch -c conda-forge"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.12.1%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.12.1%2Bcpu.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu102/libtorch-shared-with-deps-1.12.1%2Bcu102.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu102/libtorch-cxx11-abi-shared-with-deps-1.12.1%2Bcu102.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu113/libtorch-shared-with-deps-1.12.1%2Bcu113.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu113/libtorch-cxx11-abi-shared-with-deps-1.12.1%2Bcu113.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu116/libtorch-shared-with-deps-1.12.1%2Bcu116.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu116/libtorch-cxx11-abi-shared-with-deps-1.12.1%2Bcu116.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.1.1/libtorch-shared-with-deps-1.12.1%2Brocm5.1.1.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.1.1/libtorch-cxx11-abi-shared-with-deps-1.12.1%2Brocm5.1.1.zip"
+ }
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda10.2": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.y": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ },
+ "cuda.x": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ },
+ "cuda.y": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.12.1.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.12.1.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.12.1.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.12.1.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "versions": null
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda10.2": {
+ "note": "CUDA-10.2 PyTorch builds are no longer available for Windows, please use CUDA-11.6",
+ "command": null
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu113"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu116"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": "CUDA-10.2 PyTorch builds are no longer available for Windows, please use CUDA-11.6",
+ "command": null
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch"
+ },
+ "cuda.y": {
+ "note": "
NOTE: 'conda-forge' channel is required for cudatoolkit 11.6",
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.6 -c pytorch -c conda-forge"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-1.12.1%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-1.12.1%2Bcpu.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": "CUDA-10.2 PyTorch builds are no longer available for Windows, please use CUDA-11.6",
+ "versions": {}
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu113/libtorch-win-shared-with-deps-1.12.1%2Bcu113.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu113/libtorch-win-shared-with-deps-debug-1.12.1%2Bcu113.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu116/libtorch-win-shared-with-deps-1.12.1%2Bcu116.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu116/libtorch-win-shared-with-deps-debug-1.12.1%2Bcu116.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "1.12.0": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cpu"
+ },
+ "cuda10.2": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu113"
+ },
+ "cuda11.6": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu116"
+ },
+ "rocm5.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/rocm5.1.1"
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch"
+ },
+ "cuda11.6": {
+ "note": "
NOTE: 'conda-forge' channel is required for cudatoolkit 11.6",
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.6 -c pytorch -c conda-forge"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.12.0%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.12.0%2Bcpu.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu102/libtorch-shared-with-deps-1.12.0%2Bcu102.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu102/libtorch-cxx11-abi-shared-with-deps-1.12.0%2Bcu102.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu113/libtorch-shared-with-deps-1.12.0%2Bcu113.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu113/libtorch-cxx11-abi-shared-with-deps-1.12.0%2Bcu113.zip"
+ }
+ },
+ "cuda11.6": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu116/libtorch-shared-with-deps-1.12.0%2Bcu116.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu116/libtorch-cxx11-abi-shared-with-deps-1.12.0%2Bcu116.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.1.1/libtorch-shared-with-deps-1.12.0%2Brocm5.1.1.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.1.1/libtorch-cxx11-abi-shared-with-deps-1.12.0%2Brocm5.1.1.zip"
+ }
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda10.2": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda11.6": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ },
+ "cuda.x": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ },
+ "cuda11.6": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.12.0.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.12.0.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.12.0.zip"
+ }
+ },
+ "cuda11.6": {
+ "note": null,
+ "versions": {
+ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.12.0.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "versions": null
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda10.2": {
+ "note": "CUDA-10.2 PyTorch builds are no longer available for Windows, please use CUDA-11.6",
+ "command": null
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu113"
+ },
+ "cuda11.6": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu116"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": "CUDA-10.2 PyTorch builds are no longer available for Windows, please use CUDA-11.6",
+ "command": null
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch"
+ },
+ "cuda11.6": {
+ "note": "
NOTE: 'conda-forge' channel is required for cudatoolkit 11.6",
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.6 -c pytorch -c conda-forge"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-1.12.0%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-1.12.0%2Bcpu.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": "CUDA-10.2 PyTorch builds are no longer available for Windows, please use CUDA-11.6",
+ "versions": {}
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu113/libtorch-win-shared-with-deps-1.12.0%2Bcu113.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu113/libtorch-win-shared-with-deps-debug-1.12.0%2Bcu113.zip"
+ }
+ },
+ "cuda11.6": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu116/libtorch-win-shared-with-deps-1.12.0%2Bcu116.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu116/libtorch-win-shared-with-deps-debug-1.12.0%2Bcu116.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "1.11.0": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cpu"
+ },
+ "cuda10.2": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu113"
+ },
+ "rocm4.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision --extra-index-url https://download.pytorch.org/whl/rocm4.5.2"
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.11.0%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.11.0%2Bcpu.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu102/libtorch-shared-with-deps-1.11.0%2Bcu102.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu102/libtorch-cxx11-abi-shared-with-deps-1.11.0%2Bcu102.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu113/libtorch-shared-with-deps-1.11.0%2Bcu113.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu113/libtorch-cxx11-abi-shared-with-deps-1.11.0%2Bcu113.zip"
+ }
+ },
+ "rocm4.x": {
+ "note": "LibTorch binaries are not available for ROCm, please build it from source",
+ "versions": null
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda10.2": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ },
+ "cuda.x": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.11.0.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.11.0.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.11.0.zip"
+ }
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "versions": null
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda10.2": {
+ "note": "CUDA-10.2 PyTorch builds are no longer available for Windows, please use CUDA-11.3",
+ "command": null
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu113"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": "CUDA-10.2 PyTorch builds are no longer available for Windows, please use CUDA-11.3",
+ "command": null
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-1.11.0%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-1.11.0%2Bcpu.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": "CUDA-10.2 PyTorch builds are no longer available for Windows, please use CUDA-11.3",
+ "versions": {}
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu113/libtorch-win-shared-with-deps-1.11.0%2Bcu113.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu113/libtorch-win-shared-with-deps-debug-1.11.0%2Bcu113.zip"
+ }
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "1.10.2": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch==1.10.2+cpu torchvision==0.11.3+cpu torchaudio==0.10.2+cpu -f https://download.pytorch.org/whl/cpu/torch_stable.html"
+ },
+ "cuda10.2": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch==1.10.2+cu113 torchvision==0.11.3+cu113 torchaudio==0.10.2+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html"
+ },
+ "rocm4.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision==0.11.3 -f https://download.pytorch.org/whl/rocm4.2/torch_stable.html"
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.10.2%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.10.2%2Bcpu.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu102/libtorch-shared-with-deps-1.10.2%2Bcu102.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu102/libtorch-cxx11-abi-shared-with-deps-1.10.2%2Bcu102.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu113/libtorch-shared-with-deps-1.10.2%2Bcu113.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu113/libtorch-cxx11-abi-shared-with-deps-1.10.2%2Bcu113.zip"
+ }
+ },
+ "rocm4.x": {
+ "note": "LibTorch binaries are not available for ROCm, please build it from source",
+ "versions": null
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda10.2": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ },
+ "cuda.x": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.10.2.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.10.2.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.10.2.zip"
+ }
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "versions": null
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda10.2": {
+ "note": null,
+ "command": "pip3 install torch==1.10.2+cu102 torchvision==0.11.3+cu102 torchaudio===0.10.2+cu102 -f https://download.pytorch.org/whl/cu102/torch_stable.html"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch==1.10.2+cu113 torchvision==0.11.3+cu113 torchaudio===0.10.2+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-1.10.2%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-1.10.2%2Bcpu.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu102/libtorch-win-shared-with-deps-1.10.2%2Bcu102.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu102/libtorch-win-shared-with-deps-debug-1.10.2%2Bcu102.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu113/libtorch-win-shared-with-deps-1.10.2%2Bcu113.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu113/libtorch-win-shared-with-deps-debug-1.10.2%2Bcu113.zip"
+ }
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "1.10.1": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch==1.10.1+cpu torchvision==0.11.2+cpu torchaudio==0.10.1+cpu -f https://download.pytorch.org/whl/cpu/torch_stable.html"
+ },
+ "cuda10.2": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch==1.10.1+cu113 torchvision==0.11.2+cu113 torchaudio==0.10.1+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html"
+ },
+ "rocm4.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision==0.11.2 -f https://download.pytorch.org/whl/rocm4.2/torch_stable.html"
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.10.1%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.10.1%2Bcpu.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu102/libtorch-shared-with-deps-1.10.1%2Bcu102.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu102/libtorch-cxx11-abi-shared-with-deps-1.10.1%2Bcu102.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu113/libtorch-shared-with-deps-1.10.1%2Bcu113.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu113/libtorch-cxx11-abi-shared-with-deps-1.10.1%2Bcu113.zip"
+ }
+ },
+ "rocm4.x": {
+ "note": "LibTorch binaries are not available for ROCm, please build it from source",
+ "versions": null
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda10.2": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ },
+ "cuda.x": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.10.1.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.10.1.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.10.1.zip"
+ }
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "versions": null
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda10.2": {
+ "note": null,
+ "command": "pip3 install torch==1.10.1+cu102 torchvision==0.11.2+cu102 torchaudio===0.10.1+cu102 -f https://download.pytorch.org/whl/cu102/torch_stable.html"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch==1.10.1+cu113 torchvision==0.11.2+cu113 torchaudio===0.10.1+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-1.10.1%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-1.10.1%2Bcpu.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu102/libtorch-win-shared-with-deps-1.10.1%2Bcu102.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu102/libtorch-win-shared-with-deps-debug-1.10.1%2Bcu102.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu113/libtorch-win-shared-with-deps-1.10.1%2Bcu113.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu113/libtorch-win-shared-with-deps-debug-1.10.1%2Bcu113.zip"
+ }
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "1.10.0": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch==1.10.0+cpu torchvision==0.11.1+cpu torchaudio==0.10.0+cpu -f https://download.pytorch.org/whl/cpu/torch_stable.html"
+ },
+ "cuda10.2": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch==1.10.0+cu113 torchvision==0.11.1+cu113 torchaudio==0.10.0+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html"
+ },
+ "rocm4.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision==0.11.1 -f https://download.pytorch.org/whl/rocm4.2/torch_stable.html"
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.10.0%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.10.0%2Bcpu.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu102/libtorch-shared-with-deps-1.10.0%2Bcu102.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu102/libtorch-cxx11-abi-shared-with-deps-1.10.0%2Bcu102.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu113/libtorch-shared-with-deps-1.10.0%2Bcu113.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu113/libtorch-cxx11-abi-shared-with-deps-1.10.0%2Bcu113.zip"
+ }
+ },
+ "rocm4.x": {
+ "note": "LibTorch binaries are not available for ROCm, please build it from source",
+ "versions": null
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda10.2": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ },
+ "cuda.x": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.10.0.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.10.0.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.10.0.zip"
+ }
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "versions": null
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda10.2": {
+ "note": null,
+ "command": "pip3 install torch==1.10.0+cu102 torchvision==0.11.1+cu102 torchaudio===0.10.0+cu102 -f https://download.pytorch.org/whl/cu102/torch_stable.html"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch==1.10.0+cu113 torchvision==0.11.1+cu113 torchaudio===0.10.0+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-1.10.0%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-1.10.0%2Bcpu.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu102/libtorch-win-shared-with-deps-1.10.0%2Bcu102.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu102/libtorch-win-shared-with-deps-debug-1.10.0%2Bcu102.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu113/libtorch-win-shared-with-deps-1.10.0%2Bcu113.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu113/libtorch-win-shared-with-deps-debug-1.10.0%2Bcu113.zip"
+ }
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "1.9.0": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch==1.9.0+cpu torchvision==0.10.0+cpu torchaudio==0.9.0 -f https://download.pytorch.org/whl/torch_stable.html"
+ },
+ "cuda10.2": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch==1.9.0+cu111 torchvision==0.10.0+cu111 torchaudio==0.9.0 -f https://download.pytorch.org/whl/torch_stable.html"
+ },
+ "rocm4.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision==0.10.0 -f https://download.pytorch.org/whl/rocm4.2/torch_stable.html"
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch"
+ },
+ "cuda.x": {
+ "note": "
NOTE: 'nvidia' channel is required for cudatoolkit 11.1",
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch -c nvidia"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.9.0%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.9.0%2Bcpu.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu102/libtorch-shared-with-deps-1.9.0%2Bcu102.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu102/libtorch-cxx11-abi-shared-with-deps-1.9.0%2Bcu102.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu111/libtorch-shared-with-deps-1.9.0%2Bcu111.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu111/libtorch-cxx11-abi-shared-with-deps-1.9.0%2Bcu111.zip"
+ }
+ },
+ "rocm4.x": {
+ "note": "LibTorch binaries are not available for ROCm, please build it from source",
+ "versions": null
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda10.2": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ },
+ "cuda.x": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.9.0.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.9.0.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.9.0.zip"
+ }
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "versions": null
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda10.2": {
+ "note": null,
+ "command": "pip3 install torch==1.9.0+cu102 torchvision==0.10.0+cu102 torchaudio===0.9.0 -f https://download.pytorch.org/whl/torch_stable.html"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch==1.9.0+cu111 torchvision==0.10.0+cu111 torchaudio===0.9.0 -f https://download.pytorch.org/whl/torch_stable.html"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch"
+ },
+ "cuda.x": {
+ "note": "
NOTE: 'conda-forge' channel is required for cudatoolkit 11.1",
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch -c conda-forge"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-1.9.0%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-1.9.0%2Bcpu.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu102/libtorch-win-shared-with-deps-1.9.0%2Bcu102.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu102/libtorch-win-shared-with-deps-debug-1.9.0%2Bcu102.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu111/libtorch-win-shared-with-deps-1.9.0%2Bcu111.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu111/libtorch-win-shared-with-deps-debug-1.9.0%2Bcu111.zip"
+ }
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "1.9.1": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch==1.9.1+cpu torchvision==0.10.1+cpu torchaudio==0.9.1 -f https://download.pytorch.org/whl/torch_stable.html"
+ },
+ "cuda10.2": {
+ "note": null,
+ "command": "pip3 install torch==1.9.1+cu102 torchvision==0.10.1+cu102 torchaudio==0.9.1 -f https://download.pytorch.org/whl/torch_stable.html"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch==1.9.1+cu111 torchvision==0.10.1+cu111 torchaudio==0.9.1 -f https://download.pytorch.org/whl/torch_stable.html"
+ },
+ "rocm4.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision==0.10.1 -f https://download.pytorch.org/whl/rocm4.2/torch_stable.html"
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch"
+ },
+ "cuda.x": {
+ "note": "
NOTE: 'nvidia' channel is required for cudatoolkit 11.1",
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch -c nvidia"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.9.1%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.9.1%2Bcpu.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu102/libtorch-shared-with-deps-1.9.1%2Bcu102.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu102/libtorch-cxx11-abi-shared-with-deps-1.9.1%2Bcu102.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu111/libtorch-shared-with-deps-1.9.1%2Bcu111.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu111/libtorch-cxx11-abi-shared-with-deps-1.9.1%2Bcu111.zip"
+ }
+ },
+ "cuda11.6": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu111/libtorch-shared-with-deps-1.9.1%2Bcu111.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu111/libtorch-cxx11-abi-shared-with-deps-1.9.1%2Bcu111.zip"
+ }
+ },
+ "rocm4.x": {
+ "note": "LibTorch binaries are not available for ROCm, please build it from source",
+ "versions": null
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda10.2": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ },
+ "cuda.x": {
+ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.9.1.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.9.1.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.9.1.zip"
+ }
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on MacOS",
+ "versions": null
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch==1.9.1+cpu torchvision==0.10.1+cpu torchaudio==0.9.1 -f https://download.pytorch.org/whl/torch_stable.html"
+ },
+ "cuda10.2": {
+ "note": null,
+ "command": "pip3 install torch==1.9.1+cu102 torchvision==0.10.1+cu102 torchaudio===0.9.1 -f https://download.pytorch.org/whl/torch_stable.html"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch==1.9.1+cu111 torchvision==0.10.1+cu111 torchaudio===0.9.1 -f https://download.pytorch.org/whl/torch_stable.html"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda10.2": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch"
+ },
+ "cuda.x": {
+ "note": "
NOTE: 'conda-forge' channel is required for cudatoolkit 11.1",
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch -c conda-forge"
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-1.9.1%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-1.9.1%2Bcpu.zip"
+ }
+ },
+ "cuda10.2": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu102/libtorch-win-shared-with-deps-1.9.1%2Bcu102.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu102/libtorch-win-shared-with-deps-debug-1.9.1%2Bcu102.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu111/libtorch-win-shared-with-deps-1.9.1%2Bcu111.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu111/libtorch-win-shared-with-deps-debug-1.9.1%2Bcu111.zip"
+ }
+ },
+ "rocm4.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "lts-1.8.2": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch==1.8.2 torchvision==0.9.2 torchaudio==0.8.2 --extra-index-url https://download.pytorch.org/whl/lts/1.8/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch==1.8.2 torchvision==0.9.2 torchaudio==0.8.2 --extra-index-url https://download.pytorch.org/whl/lts/1.8/cu102"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch==1.8.2 torchvision==0.9.2 torchaudio==0.8.2 --extra-index-url https://download.pytorch.org/whl/lts/1.8/cu111"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not supported in LTS",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "
NOTE: Pytorch LTS version 1.8.2 is only supported for Python <= 3.8",
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-lts"
+ },
+ "cuda.y": {
+ "note": "
NOTE: 'nvidia' channel is required for cudatoolkit 11.1
NOTE: Pytorch LTS version 1.8.2 is only supported for Python <= 3.8",
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch-lts -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not supported in LTS",
+ "command": null
+ },
+ "accnone": {
+ "note": "
NOTE: Pytorch LTS version 1.8.2 is only supported for Python <= 3.8",
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch-lts"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/lts/1.8/cpu/libtorch-shared-with-deps-1.8.2%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/lts/1.8/cpu/libtorch-cxx11-abi-shared-with-deps-1.8.2%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/lts/1.8/cu102/libtorch-shared-with-deps-1.8.2%2Bcu102.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/lts/1.8/cu102/libtorch-cxx11-abi-shared-with-deps-1.8.2%2Bcu102.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/lts/1.8/cu111/libtorch-shared-with-deps-1.8.2%2Bcu111.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/lts/1.8/cu111/libtorch-cxx11-abi-shared-with-deps-1.8.2%2Bcu111.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not supported in LTS",
+ "versions": null
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda.x": {
+ "note": "# macOS is not currently supported for lts",
+ "command": null
+ },
+ "cuda.y": {
+ "note": "# macOS is not currently supported for lts",
+ "command": null
+ },
+ "rocm5.x": {
+ "note": "# macOS is not currently supported for lts",
+ "command": null
+ },
+ "accnone": {
+ "note": "# macOS is not currently supported for lts",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "# macOS is not currently supported for lts",
+ "command": null
+ },
+ "cuda.y": {
+ "note": "# macOS is not currently supported for lts",
+ "command": null
+ },
+ "rocm5.x": {
+ "note": "# macOS is not currently supported for lts",
+ "command": null
+ },
+ "accnone": {
+ "note": "# macOS is not currently supported for lts",
+ "command": null
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": "# macOS is not currently supported for lts",
+ "versions": null
+ },
+ "cuda.x": {
+ "note": "# macOS is not currently supported for lts",
+ "versions": null
+ },
+ "cuda.y": {
+ "note": "# macOS is not currently supported for lts",
+ "versions": null
+ },
+ "rocm5.x": {
+ "note": "# macOS is not currently supported for lts",
+ "versions": null
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch==1.8.2 torchvision==0.9.2 torchaudio===0.8.2 --extra-index-url https://download.pytorch.org/whl/lts/1.8/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch==1.8.2 torchvision==0.9.2 torchaudio===0.8.2 --extra-index-url https://download.pytorch.org/whl/lts/1.8/cu102"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch==1.8.2 torchvision==0.9.2 torchaudio===0.8.2 --extra-index-url https://download.pytorch.org/whl/lts/1.8/cu111"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not supported in LTS",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "
NOTE: Pytorch LTS version 1.8.2 is only supported for Python <= 3.8",
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-lts"
+ },
+ "cuda.y": {
+ "note": "
NOTE: 'conda-forge' channel is required for cudatoolkit 11.1
NOTE: Pytorch LTS version 1.8.2 is only supported for Python <= 3.8",
+ "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch-lts -c conda-forge"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not supported in LTS",
+ "command": null
+ },
+ "accnone": {
+ "note": "
NOTE: Pytorch LTS version 1.8.2 is only supported for Python <= 3.8",
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch-lts"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/lts/1.8/cpu/libtorch-win-shared-with-deps-1.8.2%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/lts/1.8/cpu/libtorch-win-shared-with-deps-debug-1.8.2%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/lts/1.8/cu102/libtorch-win-shared-with-deps-1.8.2%2Bcu102.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/lts/1.8/cu102/libtorch-win-shared-with-deps-debug-1.8.2%2Bcu102.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/lts/1.8/cu111/libtorch-win-shared-with-deps-1.8.2%2Bcu111.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/lts/1.8/cu111/libtorch-win-shared-with-deps-debug-1.8.2%2Bcu111.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not supported in LTS",
+ "versions": null
+ }
+ }
+ }
+ },
+ "1.13.1": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu116"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm5.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/rocm5.2"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.6 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.13.1%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.13.1%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu116/libtorch-shared-with-deps-1.13.1%2Bcu116.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu116/libtorch-cxx11-abi-shared-with-deps-1.13.1%2Bcu116.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu117/libtorch-shared-with-deps-1.13.1%2Bcu117.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu117/libtorch-cxx11-abi-shared-with-deps-1.13.1%2Bcu117.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.2/libtorch-shared-with-deps-1.13.1%2Brocm5.2.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.2/libtorch-cxx11-abi-shared-with-deps-1.13.1%2Brocm5.2.zip"
+ }
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "accnone": {
+ "note": "# MPS acceleration is available on MacOS 12.3+",
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "accnone": {
+ "note": "# MPS acceleration is available on MacOS 12.3+",
+ "command": "conda install pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download default libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.13.1.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download default libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.13.1.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download default libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.13.1.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download default libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.13.1.zip"
+ }
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu116"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu117"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.6 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-1.13.1%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-1.13.1%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu116/libtorch-win-shared-with-deps-1.13.1%2Bcu116.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu116/libtorch-win-shared-with-deps-debug-1.13.1%2Bcu116.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu117/libtorch-win-shared-with-deps-1.13.1%2Bcu117.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu117/libtorch-win-shared-with-deps-debug-1.13.1%2Bcu117.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "2.0.0": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "rocm5.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm5.4.2"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.0.0%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-2.0.0%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu117/libtorch-shared-with-deps-2.0.0%2Bcu117.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu117/libtorch-cxx11-abi-shared-with-deps-2.0.0%2Bcu117.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-shared-with-deps-2.0.0%2Bcu118.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-cxx11-abi-shared-with-deps-2.0.0%2Bcu118.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.4.2/libtorch-shared-with-deps-2.0.0%2Brocm5.4.2.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.4.2/libtorch-cxx11-abi-shared-with-deps-2.0.0%2Brocm5.4.2.zip"
+ }
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "accnone": {
+ "note": "# MPS acceleration is available on MacOS 12.3+",
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "accnone": {
+ "note": "# MPS acceleration is available on MacOS 12.3+",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download default libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.0.0.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download default libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.0.0.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download default libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.0.0.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download default libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.0.0.zip"
+ }
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-2.0.0%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-2.0.0%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu117/libtorch-win-shared-with-deps-2.0.0%2Bcu117.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu117/libtorch-win-shared-with-deps-debug-2.0.0%2Bcu117.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-2.0.0%2Bcu118.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-debug-2.0.0%2Bcu118.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "2.0.1": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "rocm5.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm5.4.2"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.0.1%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-2.0.1%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu117/libtorch-shared-with-deps-2.0.1%2Bcu117.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu117/libtorch-cxx11-abi-shared-with-deps-2.0.1%2Bcu117.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-shared-with-deps-2.0.1%2Bcu118.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-cxx11-abi-shared-with-deps-2.0.1%2Bcu118.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.4.2/libtorch-shared-with-deps-2.0.1%2Brocm5.4.2.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.4.2/libtorch-cxx11-abi-shared-with-deps-2.0.1%2Brocm5.4.2.zip"
+ }
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "accnone": {
+ "note": "# MPS acceleration is available on MacOS 12.3+",
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "accnone": {
+ "note": "# MPS acceleration is available on MacOS 12.3+",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download default libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.0.1.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download default libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.0.1.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download default libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.0.1.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download default libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.0.1.zip"
+ }
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-2.0.1%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-2.0.1%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu117/libtorch-win-shared-with-deps-2.0.1%2Bcu117.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu117/libtorch-win-shared-with-deps-debug-2.0.1%2Bcu117.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-2.0.1%2Bcu118.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-debug-2.0.1%2Bcu118.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "2.1.0": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm5.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm5.6"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.1.0%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-2.1.0%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-shared-with-deps-2.1.0%2Bcu118.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-cxx11-abi-shared-with-deps-2.1.0%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-shared-with-deps-2.1.0%2Bcu121.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-cxx11-abi-shared-with-deps-2.1.0%2Bcu121.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.6/libtorch-shared-with-deps-2.1.0%2Brocm5.6.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.6/libtorch-cxx11-abi-shared-with-deps-2.1.0%2Brocm5.6.zip"
+ }
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "accnone": {
+ "note": "# MPS acceleration is available on MacOS 12.3+",
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "accnone": {
+ "note": "# MPS acceleration is available on MacOS 12.3+",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.1.0.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.1.0.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.1.0.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.1.0.zip"
+ }
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-2.1.0%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-2.1.0%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-2.1.0%2Bcu118.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-debug-2.1.0%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-2.1.0%2Bcu121.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-debug-2.1.0%2Bcu121.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "2.1.1": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm5.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm5.6"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.1.1%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-2.1.1%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-shared-with-deps-2.1.1%2Bcu118.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-cxx11-abi-shared-with-deps-2.1.1%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-shared-with-deps-2.1.1%2Bcu121.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-cxx11-abi-shared-with-deps-2.1.1%2Bcu121.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.6/libtorch-shared-with-deps-2.1.1%2Brocm5.6.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.6/libtorch-cxx11-abi-shared-with-deps-2.1.1%2Brocm5.6.zip"
+ }
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "accnone": {
+ "note": "# MPS acceleration is available on MacOS 12.3+",
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "accnone": {
+ "note": "# MPS acceleration is available on MacOS 12.3+",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.1.1.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.1.1.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.1.1.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.1.1.zip"
+ }
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-2.1.1%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-2.1.1%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-2.1.1%2Bcu118.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-debug-2.1.1%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-2.1.1%2Bcu121.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-debug-2.1.1%2Bcu121.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "2.1.2": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm5.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm5.6"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.1.2%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-2.1.2%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-shared-with-deps-2.1.2%2Bcu118.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-cxx11-abi-shared-with-deps-2.1.2%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-shared-with-deps-2.1.2%2Bcu121.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-cxx11-abi-shared-with-deps-2.1.2%2Bcu121.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.6/libtorch-shared-with-deps-2.1.2%2Brocm5.6.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.6/libtorch-cxx11-abi-shared-with-deps-2.1.2%2Brocm5.6.zip"
+ }
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "accnone": {
+ "note": "# MPS acceleration is available on MacOS 12.3+",
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "accnone": {
+ "note": "# MPS acceleration is available on MacOS 12.3+",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.1.2.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.1.2.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.1.2.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.1.2.zip"
+ }
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-2.1.2%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-2.1.2%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-2.1.2%2Bcu118.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-debug-2.1.2%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-2.1.2%2Bcu121.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-debug-2.1.2%2Bcu121.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "2.2.0": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm5.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm5.7"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.2.0%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-2.2.0%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-shared-with-deps-2.2.0%2Bcu118.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-cxx11-abi-shared-with-deps-2.2.0%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-shared-with-deps-2.2.0%2Bcu121.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-cxx11-abi-shared-with-deps-2.2.0%2Bcu121.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.7/libtorch-shared-with-deps-2.2.0%2Brocm5.7.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.7/libtorch-cxx11-abi-shared-with-deps-2.2.0%2Brocm5.7.zip"
+ }
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-x86_64-2.2.0.zip",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.2.0.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-x86_64-2.2.0.zip",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.2.0.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-x86_64-2.2.0.zip",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.2.0.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-x86_64-2.2.0.zip",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.2.0.zip"
+ }
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-2.2.0%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-2.2.0%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-2.2.0%2Bcu118.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-debug-2.2.0%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-2.2.0%2Bcu121.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-debug-2.2.0%2Bcu121.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "2.2.1": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm5.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm5.7"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.2.1%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-2.2.1%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-shared-with-deps-2.2.1%2Bcu118.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-cxx11-abi-shared-with-deps-2.2.1%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-shared-with-deps-2.2.1%2Bcu121.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-cxx11-abi-shared-with-deps-2.2.1%2Bcu121.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.7/libtorch-shared-with-deps-2.2.1%2Brocm5.7.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.7/libtorch-cxx11-abi-shared-with-deps-2.2.1%2Brocm5.7.zip"
+ }
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-x86_64-2.2.1.zip",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.2.1.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-x86_64-2.2.1.zip",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.2.1.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-x86_64-2.2.1.zip",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.2.1.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-x86_64-2.2.1.zip",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.2.1.zip"
+ }
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-2.2.1%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-2.2.1%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-2.2.1%2Bcu118.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-debug-2.2.1%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-2.2.1%2Bcu121.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-debug-2.2.1%2Bcu121.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "2.2.2": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm5.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm5.7"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.2.2%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-2.2.2%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-shared-with-deps-2.2.2%2Bcu118.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-cxx11-abi-shared-with-deps-2.2.2%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-shared-with-deps-2.2.2%2Bcu121.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-cxx11-abi-shared-with-deps-2.2.2%2Bcu121.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.7/libtorch-shared-with-deps-2.2.2%2Brocm5.7.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm5.7/libtorch-cxx11-abi-shared-with-deps-2.2.2%2Brocm5.7.zip"
+ }
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-x86_64-2.2.2.zip",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.2.2.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-x86_64-2.2.2.zip",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.2.2.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-x86_64-2.2.2.zip",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.2.2.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-x86_64-2.2.2.zip",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.2.2.zip"
+ }
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-2.2.2%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-2.2.2%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-2.2.2%2Bcu118.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-debug-2.2.2%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-2.2.2%2Bcu121.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-debug-2.2.2%2Bcu121.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "2.3.0": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm5.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm6.0"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.3.0%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-2.3.0%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-shared-with-deps-2.3.0%2Bcu118.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-cxx11-abi-shared-with-deps-2.3.0%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-shared-with-deps-2.3.0%2Bcu121.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-cxx11-abi-shared-with-deps-2.3.0%2Bcu121.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm6.0/libtorch-shared-with-deps-2.3.0%2Brocm6.0.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm6.0/libtorch-cxx11-abi-shared-with-deps-2.3.0%2Brocm6.0.zip"
+ }
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.3.0.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.3.0.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.3.0.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.3.0.zip"
+ }
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-2.3.0%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-2.3.0%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-2.3.0%2Bcu118.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-debug-2.3.0%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-2.3.0%2Bcu121.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-debug-2.3.0%2Bcu121.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "2.3.1": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm5.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm6.0"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.3.1%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-2.3.1%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-shared-with-deps-2.3.1%2Bcu118.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-cxx11-abi-shared-with-deps-2.3.1%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-shared-with-deps-2.3.1%2Bcu121.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-cxx11-abi-shared-with-deps-2.3.1%2Bcu121.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm6.0/libtorch-shared-with-deps-2.3.1%2Brocm6.0.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm6.0/libtorch-cxx11-abi-shared-with-deps-2.3.1%2Brocm6.0.zip"
+ }
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.3.1.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.3.1.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.3.1.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.3.1.zip"
+ }
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-2.3.1%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-2.3.1%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-2.3.1%2Bcu118.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-debug-2.3.1%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-2.3.1%2Bcu121.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-debug-2.3.1%2Bcu121.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "2.4.0": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.z": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124"
+ },
+ "rocm5.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm6.1"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "cuda.z": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.4 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.4.0%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-2.4.0%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-shared-with-deps-2.4.0%2Bcu118.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-cxx11-abi-shared-with-deps-2.4.0%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-shared-with-deps-2.4.0%2Bcu121.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-cxx11-abi-shared-with-deps-2.4.0%2Bcu121.zip"
+ }
+ },
+ "cuda.z": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu124/libtorch-shared-with-deps-2.4.0%2Bcu124.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu124/libtorch-cxx11-abi-shared-with-deps-2.4.0%2Bcu124.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm6.1/libtorch-shared-with-deps-2.4.0%2Brocm6.1.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm6.1/libtorch-cxx11-abi-shared-with-deps-2.4.0%2Brocm6.1.zip"
+ }
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "cuda.z": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "cuda.z": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.4.0.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.4.0.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.4.0.zip"
+ }
+ },
+ "cuda.z": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.4.0.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.4.0.zip"
+ }
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121"
+ },
+ "cuda.z": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "cuda.z": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.4 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-2.4.0%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-2.4.0%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-2.4.0%2Bcu118.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-debug-2.4.0%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-2.4.0%2Bcu121.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-debug-2.4.0%2Bcu121.zip"
+ }
+ },
+ "cuda.z": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu124/libtorch-win-shared-with-deps-2.4.0%2Bcu124.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu124/libtorch-win-shared-with-deps-debug-2.4.0%2Bcu124.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "2.4.1": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.z": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124"
+ },
+ "rocm5.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm6.1"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "cuda.z": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.4 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.4.1%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-2.4.1%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-shared-with-deps-2.4.1%2Bcu118.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-cxx11-abi-shared-with-deps-2.4.1%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-shared-with-deps-2.4.1%2Bcu121.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-cxx11-abi-shared-with-deps-2.4.1%2Bcu121.zip"
+ }
+ },
+ "cuda.z": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu124/libtorch-shared-with-deps-2.4.1%2Bcu124.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu124/libtorch-cxx11-abi-shared-with-deps-2.4.1%2Bcu124.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm6.1/libtorch-shared-with-deps-2.4.1%2Brocm6.1.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm6.1/libtorch-cxx11-abi-shared-with-deps-2.4.1%2Brocm6.1.zip"
+ }
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "cuda.z": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "cuda.z": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.4.1.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.4.1.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.4.1.zip"
+ }
+ },
+ "cuda.z": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.4.1.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.4.1.zip"
+ }
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121"
+ },
+ "cuda.z": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "cuda.z": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.4 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-2.4.1%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-2.4.1%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-2.4.1%2Bcu118.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-debug-2.4.1%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-2.4.1%2Bcu121.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-debug-2.4.1%2Bcu121.zip"
+ }
+ },
+ "cuda.z": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu124/libtorch-win-shared-with-deps-2.4.1%2Bcu124.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu124/libtorch-win-shared-with-deps-debug-2.4.1%2Bcu124.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "2.5.0": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121"
+ },
+ "cuda.z": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm5.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm6.2"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "cuda.z": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.4 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.5.0%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-2.5.0%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-shared-with-deps-2.5.0%2Bcu118.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-cxx11-abi-shared-with-deps-2.5.0%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-shared-with-deps-2.5.0%2Bcu121.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-cxx11-abi-shared-with-deps-2.5.0%2Bcu121.zip"
+ }
+ },
+ "cuda.z": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu124/libtorch-shared-with-deps-2.5.0%2Bcu124.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu124/libtorch-cxx11-abi-shared-with-deps-2.5.0%2Bcu124.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm6.2/libtorch-shared-with-deps-2.5.0%2Brocm6.2.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm6.2/libtorch-cxx11-abi-shared-with-deps-2.5.0%2Brocm6.2.zip"
+ }
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "cuda.z": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "cuda.z": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.5.0.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.5.0.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.5.0.zip"
+ }
+ },
+ "cuda.z": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.5.0.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.5.0.zip"
+ }
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121"
+ },
+ "cuda.z": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "cuda.z": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.4 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-2.5.0%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-2.5.0%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-2.5.0%2Bcu118.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-debug-2.5.0%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-2.5.0%2Bcu121.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-debug-2.5.0%2Bcu121.zip"
+ }
+ },
+ "cuda.z": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu124/libtorch-win-shared-with-deps-2.5.0%2Bcu124.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu124/libtorch-win-shared-with-deps-debug-2.5.0%2Bcu124.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ },
+ "2.5.1": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121"
+ },
+ "cuda.z": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm5.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm6.2"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "cuda.z": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.4 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.5.1%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-2.5.1%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-shared-with-deps-2.5.1%2Bcu118.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-cxx11-abi-shared-with-deps-2.5.1%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-shared-with-deps-2.5.1%2Bcu121.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-cxx11-abi-shared-with-deps-2.5.1%2Bcu121.zip"
+ }
+ },
+ "cuda.z": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu124/libtorch-shared-with-deps-2.5.1%2Bcu124.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu124/libtorch-cxx11-abi-shared-with-deps-2.5.1%2Bcu124.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm6.2/libtorch-shared-with-deps-2.5.1%2Brocm6.2.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm6.2/libtorch-cxx11-abi-shared-with-deps-2.5.1%2Brocm6.2.zip"
+ }
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "cuda.z": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "cuda.z": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.5.1.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.5.1.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.5.1.zip"
+ }
+ },
+ "cuda.z": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.5.1.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.5.1.zip"
+ }
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121"
+ },
+ "cuda.z": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "cuda.z": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.4 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-2.5.1%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-2.5.1%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-2.5.1%2Bcu118.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-debug-2.5.1%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-2.5.1%2Bcu121.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-debug-2.5.1%2Bcu121.zip"
+ }
+ },
+ "cuda.z": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu124/libtorch-win-shared-with-deps-2.5.1%2Bcu124.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu124/libtorch-win-shared-with-deps-debug-2.5.1%2Bcu124.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "
NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/pytorch_vision_ibnnet.md b/pytorch_vision_ibnnet.md
new file mode 100644
index 000000000..37bccf60e
--- /dev/null
+++ b/pytorch_vision_ibnnet.md
@@ -0,0 +1,113 @@
+---
+layout: hub_detail
+background-class: hub-background
+body-class: hub
+title: IBN-Net
+summary: Networks with domain/appearance invariance
+category: researchers
+image: ibnnet.png
+author: Xingang Pan
+tags: [vision]
+github-link: https://github.com/XingangPan/IBN-Net
+github-id: XingangPan/IBN-Net
+featured_image_1: ibnnet.png
+featured_image_2: no-image
+accelerator: cuda-optional
+order: 10
+demo-model-link: https://huggingface.co/spaces/pytorch/IBN-Net
+---
+
+```python
+import torch
+model = torch.hub.load('XingangPan/IBN-Net', 'resnet50_ibn_a', pretrained=True)
+model.eval()
+```
+
+모든 사전 훈련된 모델은 동일한 방식으로 정규화된 입력 이미지를 요구합니다.
+즉, `H`와 `W`가 최소 `224`의 크기를 가지는 `(3 x H x W)`형태의 3채널 RGB 이미지의 미니배치가 필요합니다.
+이미지를 [0, 1] 범위로 불러온 다음 `mean = [0.485, 0.456, 0.406]`, `std = [0.229, 0.224, 0.225]`를 이용하여 정규화해야 합니다.
+
+다음은 실행예시입니다.
+
+```python
+# 파이토치 웹 사이트에서 예제 이미지 다운로드
+import urllib
+url, filename = ("https://github.com/pytorch/hub/raw/master/images/dog.jpg", "dog.jpg")
+try: urllib.URLopener().retrieve(url, filename)
+except: urllib.request.urlretrieve(url, filename)
+```
+
+```python
+# 실행예시 (torchvision이 요구됩니다.)
+from PIL import Image
+from torchvision import transforms
+input_image = Image.open(filename)
+preprocess = transforms.Compose([
+ transforms.Resize(256),
+ transforms.CenterCrop(224),
+ transforms.ToTensor(),
+ transforms.Normalize(mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225]),
+])
+input_tensor = preprocess(input_image)
+input_batch = input_tensor.unsqueeze(0) # 모델에서 요구하는 미니배치 생성
+
+# GPU 사용이 가능한 경우 속도를 위해 입력과 모델을 GPU로 이동
+if torch.cuda.is_available():
+ input_batch = input_batch.to('cuda')
+ model.to('cuda')
+
+with torch.no_grad():
+ output = model(input_batch)
+# ImageNet의 1000개 클래스에 대한 신뢰도 점수를 가진 1000 형태의 Tensor 출력
+print(output[0])
+# 출력은 정규화되어있지 않습니다. 소프트맥스를 실행하여 확률을 얻을 수 있습니다.
+probabilities = torch.nn.functional.softmax(output[0], dim=0)
+print(probabilities)
+```
+
+```
+# ImageNet 레이블 다운로드
+!wget https://raw.githubusercontent.com/pytorch/hub/master/imagenet_classes.txt
+```
+
+```
+# 카테고리 읽어오기
+with open("imagenet_classes.txt", "r") as f:
+ categories = [s.strip() for s in f.readlines()]
+# 이미지마다 상위 카테고리 5개 보여주기
+top5_prob, top5_catid = torch.topk(probabilities, 5)
+for i in range(top5_prob.size(0)):
+ print(categories[top5_catid[i]], top5_prob[i].item())
+```
+
+### 모델 설명
+
+IBN-Net은 도메인/외관 불변성을 갖는 CNN 모델입니다.
+Style transfer에 영감을 얻어 IBN-Net은 단일 심층 네트워크에서 인스턴스 정규화와 일괄 정규화를 신중하게 통합합니다.
+모델 복잡성을 추가하지 않고 모델링 및 범용성을 모두 증가시키는 간단한 방법을 제공합니다.
+IBN-Net은 특히 교차 도메인 또는 사람/차량 재식별 작업에 적합합니다.
+
+ImageNet 데이터셋을 사용했을 때 사전 훈련된 모델들의 정확도는 다음과 같습니다.
+
+| Model name | Top-1 acc | Top-5 acc |
+| --------------- | ----------- | ----------- |
+| resnet50_ibn_a | 77.46 | 93.68 |
+| resnet101_ibn_a | 78.61 | 94.41 |
+| resnext101_ibn_a | 79.12 | 94.58 |
+| se_resnet101_ibn_a | 78.75 | 94.49 |
+
+두 가지 Re-ID 벤치마크 Market1501 및 DukeMTMC-reID에 대한 rank1/mAP는 아래에 나열되어 있습니다.([michuanhaohao/reid-strong-baseline](https://github.com/michuanhaohao/reid-strong-baseline)에서 가져왔습니다.)
+
+| Backbone | Market1501 | DukeMTMC-reID |
+| --- | -- | -- |
+| ResNet50 | 94.5 (85.9) | 86.4 (76.4) |
+| ResNet101 | 94.5 (87.1) | 87.6 (77.6) |
+| SeResNet50 | 94.4 (86.3) | 86.4 (76.5) |
+| SeResNet101 | 94.6 (87.3) | 87.5 (78.0) |
+| SeResNeXt50 | 94.9 (87.6) | 88.0 (78.3) |
+| SeResNeXt101 | 95.0 (88.0) | 88.4 (79.0) |
+| ResNet50-IBN-a | 95.0 (88.2) | 90.1 (79.1) |
+
+### 참고문헌
+
+ - [Two at Once: Enhancing Learning and Generalization Capacities via IBN-Net](https://arxiv.org/abs/1807.09441)
diff --git a/redirects.json b/redirects.json
new file mode 100644
index 000000000..ce9cdaa0f
--- /dev/null
+++ b/redirects.json
@@ -0,0 +1 @@
+{"/get-started/":"https://pytorch.kr/get-started/locally/","/previous-versions.html":"https://pytorch.kr/get-started/previous-versions/","/blog/categories/":"https://pytorch.kr/blog/","/hub/developer-models/compact":"https://pytorch.kr/hub/research-models/compact","/hub/developer-models":"https://pytorch.kr/hub/research-models","/support/":"https://pytorch.kr/resources/"}
\ No newline at end of file
diff --git a/resnest.jpg b/resnest.jpg
new file mode 100644
index 000000000..994dc6ff0
Binary files /dev/null and b/resnest.jpg differ
diff --git a/resnet.png b/resnet.png
new file mode 100644
index 000000000..81b782967
Binary files /dev/null and b/resnet.png differ
diff --git a/resnext.png b/resnext.png
new file mode 100644
index 000000000..f74c4eb90
Binary files /dev/null and b/resnext.png differ
diff --git a/resources/index.html b/resources/index.html
new file mode 100644
index 000000000..dcdced4cd
--- /dev/null
+++ b/resources/index.html
@@ -0,0 +1,592 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ 리소스(Resources) | PyTorchKR | 파이토치 한국 사용자 모임
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
리소스(Resources)
+
+
PyTorch 공식 홈페이지/저장소를 비롯하여 도움이 되는 링크들을 모아두었습니다.
+ 더 많은 정보들은 커뮤니티의 정보 공유 게시판 을 참고해보세요!
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/robots.txt b/robots.txt
new file mode 100644
index 000000000..14267e903
--- /dev/null
+++ b/robots.txt
@@ -0,0 +1,2 @@
+User-agent: *
+Allow: /
\ No newline at end of file
diff --git a/run_pytorch.sh b/run_pytorch.sh
new file mode 100755
index 000000000..a4b9132ab
--- /dev/null
+++ b/run_pytorch.sh
@@ -0,0 +1,21 @@
+#!/bin/bash
+. ~/miniconda3/etc/profile.d/conda.sh
+conda activate base
+
+ALL_FILES=$(find *.md ! -name README.md)
+PYTHON_CODE_DIR="python_code"
+
+mkdir $PYTHON_CODE_DIR
+
+# Quick rundown: for each file we extract the python code that's within
+# the ``` markers and we put that code in a corresponding .py file in $PYTHON_CODE_DIR
+# Then we execute each of these python files with pytest in test_run_python_code.py
+for f in $ALL_FILES
+do
+ f_no_ext=${f%.md} # remove .md extension
+ out_py=$PYTHON_CODE_DIR/$f_no_ext.py
+ echo "Extracting Python code from $f into $out_py"
+ sed -n '/^```python/,/^```/ p' < $f | sed '/^```/ d' > $out_py
+done
+
+pytest --junitxml=test-results/junit.xml test_run_python_code.py -vv
diff --git a/sanity_check.py b/sanity_check.py
new file mode 100755
index 000000000..c3e5a9f6b
--- /dev/null
+++ b/sanity_check.py
@@ -0,0 +1,160 @@
+import argparse
+import os
+import glob
+from urllib.request import urlopen, HTTPError
+from tags import valid_tags
+import yaml
+import mistune
+
+class ValidMD:
+ def __init__(self, filename):
+ self.filename = filename
+ self.required_user_fields = ['title', 'summary', 'image', 'author',
+ 'tags', 'github-link', 'category']
+
+ self.optional_image_fields = ['featured_image_1', 'featured_image_2']
+
+ self.valid_tags = valid_tags
+
+ self.valid_categories = ['researchers', 'developers']
+
+ self.required_sections = ['Model Description']
+
+ self.optional_demo_link = ['demo-model-link']
+
+ def validate_tags(self, tags):
+ '''
+ Only allow tags in pre-defined set
+ '''
+ for t in tags:
+ if t not in self.valid_tags:
+ raise ValueError(
+ 'Tag {} is not valid in {}. Valid tag set is {}'
+ .format(t, self.filename, self.valid_tags))
+
+ def validate_category(self, category):
+ '''
+ Only allow categories in predefined set
+ '''
+ if category not in self.valid_categories:
+ raise ValueError(
+ 'Category {} is not valid in {}. Choose from {}'
+ .format(category, self.filename, self.valid_categories))
+
+ def validate_link(self, link):
+ '''
+ Make sure the github repo exists
+ '''
+ try:
+ urlopen(link)
+ except HTTPError:
+ raise ValueError('{} is not valid url in {}'
+ .format(link, self.filename))
+
+ def validate_image(self, image_name):
+ '''
+ Make sure reference image exists in images/
+ '''
+ images = [os.path.basename(i) for i in glob.glob('images/*')]\
+ + ['pytorch-logo.png', 'no-image']
+ if image_name not in images:
+ raise ValueError('Image {} referenced in {} not found in images/'
+ .format(image_name, self.filename))
+
+ def validate_header(self, header):
+ '''
+ Make sure the header is in the required format
+ '''
+ assert header['layout'] == 'hub_detail'
+ assert header['background-class'] == 'hub-background'
+ assert header['body-class'] == 'hub'
+
+ for field in self.required_user_fields:
+ header[field] # assert that it exists
+
+ self.validate_tags(header['tags'])
+ self.validate_link(header['github-link'])
+ self.validate_image(header['image'])
+ self.validate_category(header['category'])
+
+ for field in self.optional_demo_link:
+ if field in header.keys():
+ self.validate_link(header[field])
+
+ for field in self.optional_image_fields:
+ if field in header.keys():
+ self.validate_image(header[field])
+
+ for k in header.keys():
+ if not k.endswith('-link'):
+ self.no_extra_colon(k, header[k])
+
+
+ def no_extra_colon(self, field, value):
+ # Jekyll doesn't build with extra colon in these fields
+ if ':' in str(value):
+ raise ValueError('Remove extra \':\' in field {} with value {} in file {}'
+ .format(field, value, self.filename))
+
+ def validate_markdown(self, markdown):
+ m = mistune.create_markdown(renderer=mistune.AstRenderer())
+
+ for block in m(markdown):
+ if block['type'] == 'heading':
+ # we dont want colon after section names
+ text_children = [c for c in block['children'] if c['type'] == 'text']
+ for c in text_children:
+ assert not c['text'].endswith(':')
+ if c['text'] in self.required_sections:
+ self.required_sections.remove(c['text'])
+ try:
+ assert len(self.required_sections) == 0
+ except AssertionError as e:
+ print("Missing required sections: {}".format(self.required_sections))
+ raise e
+
+
+ def check_markdown_file(self):
+ print('Checking {}...'.format(self.filename))
+
+ # separate header and markdown.
+ # Then, check header and markdown separately
+ header = []
+ markdown = []
+ header_read = False
+ with open(self.filename, 'r') as f:
+ for line in f:
+ if line.startswith('---'):
+ header_read = not header_read
+ continue
+ if header_read == True:
+ header += [line]
+ else:
+ markdown += [line]
+
+ # checks that it's valid yamp
+ header = yaml.safe_load(''.join(header))
+ assert header, "Failed to parse a valid yaml header"
+ self.validate_header(header)
+
+
+ # check markdown
+ markdown = "".join(markdown)
+ self.validate_markdown(markdown)
+
+def sanity_check():
+ for f in glob.glob('*.md'):
+ # Skip documentation
+ if f in ('README.md', 'CONTRIBUTING.md', 'CODE_OF_CONDUCT.md'):
+ continue
+ ValidMD(f).check_markdown_file()
+
+
+if __name__ == "__main__":
+ parser = argparse.ArgumentParser()
+ parser.add_argument('-f', '--file', default=None, help='filename')
+ args = parser.parse_args()
+ if args.file:
+ ValidMD(args.file).check_markdown_file()
+ else:
+ sanity_check()
diff --git a/setup_ci.sh b/setup_ci.sh
new file mode 100755
index 000000000..93746f28e
--- /dev/null
+++ b/setup_ci.sh
@@ -0,0 +1,32 @@
+#!/usr/bin/env bash
+set -ex -o pipefail
+
+# Set up NVIDIA docker repo
+curl -L https://nvidia.github.io/nvidia-docker/gpgkey | sudo apt-key add -
+echo "deb https://nvidia.github.io/libnvidia-container/ubuntu16.04/amd64 /" | sudo tee -a /etc/apt/sources.list.d/nvidia-docker.list
+echo "deb https://nvidia.github.io/nvidia-container-runtime/ubuntu16.04/amd64 /" | sudo tee -a /etc/apt/sources.list.d/nvidia-docker.list
+echo "deb https://nvidia.github.io/nvidia-docker/ubuntu16.04/amd64 /" | sudo tee -a /etc/apt/sources.list.d/nvidia-docker.list
+
+# Remove unnecessary sources
+sudo rm -f /etc/apt/sources.list.d/google-chrome.list
+sudo rm -f /etc/apt/heroku.list
+sudo rm -f /etc/apt/openjdk-r-ubuntu-ppa-xenial.list
+sudo rm -f /etc/apt/partner.list
+
+sudo apt-get -y update
+sudo apt-get -y remove linux-image-generic linux-headers-generic linux-generic docker-ce
+sudo apt-get -y install \
+ linux-headers-$(uname -r) \
+ linux-image-generic \
+ moreutils \
+ docker-ce=5:18.09.4~3-0~ubuntu-xenial \
+ nvidia-container-runtime=2.0.0+docker18.09.4-1 \
+ nvidia-docker2=2.0.3+docker18.09.4-1 \
+ expect-dev
+
+sudo pkill -SIGHUP dockerd
+
+DRIVER_FN="NVIDIA-Linux-x86_64-450.51.06.run"
+wget "https://s3.amazonaws.com/ossci-linux/nvidia_driver/$DRIVER_FN"
+sudo /bin/bash "$DRIVER_FN" -s --no-drm || (sudo cat /var/log/nvidia-installer.log && false)
+nvidia-smi
diff --git a/shufflenet_v2_1.png b/shufflenet_v2_1.png
new file mode 100644
index 000000000..2e6750b41
Binary files /dev/null and b/shufflenet_v2_1.png differ
diff --git a/shufflenet_v2_2.png b/shufflenet_v2_2.png
new file mode 100644
index 000000000..44960faac
Binary files /dev/null and b/shufflenet_v2_2.png differ
diff --git a/sigsep_logo_inria.png b/sigsep_logo_inria.png
new file mode 100644
index 000000000..066ea8861
Binary files /dev/null and b/sigsep_logo_inria.png differ
diff --git a/sigsep_umx-diagram.png b/sigsep_umx-diagram.png
new file mode 100644
index 000000000..9cb5c4a35
Binary files /dev/null and b/sigsep_umx-diagram.png differ
diff --git a/silero_imagenet_moment.png b/silero_imagenet_moment.png
new file mode 100644
index 000000000..faa16dc5c
Binary files /dev/null and b/silero_imagenet_moment.png differ
diff --git a/silero_logo.jpg b/silero_logo.jpg
new file mode 100644
index 000000000..0ced1942a
Binary files /dev/null and b/silero_logo.jpg differ
diff --git a/silero_stt_model.jpg b/silero_stt_model.jpg
new file mode 100644
index 000000000..2e67c11c2
Binary files /dev/null and b/silero_stt_model.jpg differ
diff --git a/silero_vad_performance.png b/silero_vad_performance.png
new file mode 100644
index 000000000..9d1d9f4f1
Binary files /dev/null and b/silero_vad_performance.png differ
diff --git a/sitemap.xml b/sitemap.xml
new file mode 100644
index 000000000..ad85c182c
--- /dev/null
+++ b/sitemap.xml
@@ -0,0 +1,354 @@
+
+
diff --git a/slowfast.png b/slowfast.png
new file mode 100644
index 000000000..c5f542a1f
Binary files /dev/null and b/slowfast.png differ
diff --git a/squeezenet.png b/squeezenet.png
new file mode 100644
index 000000000..f98b670f4
Binary files /dev/null and b/squeezenet.png differ
diff --git a/ssd.png b/ssd.png
new file mode 100644
index 000000000..a7bdff94e
Binary files /dev/null and b/ssd.png differ
diff --git a/ssd_diagram.png b/ssd_diagram.png
new file mode 100644
index 000000000..cbb0e69bc
Binary files /dev/null and b/ssd_diagram.png differ
diff --git a/ssl-image.png b/ssl-image.png
new file mode 100644
index 000000000..0fa72e245
Binary files /dev/null and b/ssl-image.png differ
diff --git a/support/index.html b/support/index.html
new file mode 100644
index 000000000..4921e6c14
--- /dev/null
+++ b/support/index.html
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/tacotron2_diagram.png b/tacotron2_diagram.png
new file mode 100644
index 000000000..6efb12f93
Binary files /dev/null and b/tacotron2_diagram.png differ
diff --git a/tags.py b/tags.py
new file mode 100644
index 000000000..817b4d422
--- /dev/null
+++ b/tags.py
@@ -0,0 +1,6 @@
+valid_tags = ['vision',
+ 'nlp',
+ 'generative',
+ 'audio',
+ 'scriptable',
+ ]
diff --git a/test_run_python_code.py b/test_run_python_code.py
new file mode 100644
index 000000000..f44a28569
--- /dev/null
+++ b/test_run_python_code.py
@@ -0,0 +1,41 @@
+from subprocess import check_output, STDOUT, CalledProcessError
+import sys
+import pytest
+import glob
+
+
+PYTHON_CODE_DIR = "python_code"
+ALL_FILES = glob.glob(PYTHON_CODE_DIR + "/*.py")
+
+
+@pytest.mark.parametrize('file_path', ALL_FILES)
+def test_run_file(file_path):
+ if 'nvidia' in file_path:
+ # FIXME: NVIDIA models checkoints are on cuda
+ pytest.skip("temporarily disabled")
+ if 'pytorch_fairseq_translation' in file_path:
+ pytest.skip("temporarily disabled")
+ if 'ultralytics_yolov5' in file_path:
+ # FIXME torch.nn.modules.module.ModuleAttributeError: 'autoShape' object has no attribute 'fuse
+ pytest.skip("temporarily disabled")
+ if 'huggingface_pytorch-transformers' in file_path:
+ # FIXME torch.nn.modules.module.ModuleAttributeError: 'autoShape' object has no attribute 'fuse
+ pytest.skip("temporarily disabled")
+ if 'pytorch_fairseq_roberta' in file_path:
+ pytest.skip("temporarily disabled")
+
+ # We just run the python files in a separate sub-process. We really want a
+ # subprocess here because otherwise we might run into package versions
+ # issues: imagine script A that needs torchvivion 0.9 and script B that
+ # needs torchvision 0.10. If script A is run prior to script B in the same
+ # process, script B will still be run with torchvision 0.9 because the only
+ # "import torchvision" statement that counts is the first one, and even
+ # torchub sys.path shenanigans can do nothing about this. By creating
+ # subprocesses we're sure that all file executions are fully independent.
+ try:
+ # This is inspired (and heavily simplified) from
+ # https://github.com/cloudpipe/cloudpickle/blob/343da119685f622da2d1658ef7b3e2516a01817f/tests/testutils.py#L177
+ out = check_output([sys.executable, file_path], stderr=STDOUT)
+ print(out.decode())
+ except CalledProcessError as e:
+ raise RuntimeError(f"Script {file_path} errored with output:\n{e.output.decode()}")
diff --git a/ultralytics_yolov5_img0.jpg b/ultralytics_yolov5_img0.jpg
new file mode 100644
index 000000000..bffe5837e
Binary files /dev/null and b/ultralytics_yolov5_img0.jpg differ
diff --git a/ultralytics_yolov5_img1.jpg b/ultralytics_yolov5_img1.jpg
new file mode 100644
index 000000000..cc42fff74
Binary files /dev/null and b/ultralytics_yolov5_img1.jpg differ
diff --git a/ultralytics_yolov5_img2.png b/ultralytics_yolov5_img2.png
new file mode 100644
index 000000000..59c1792b9
Binary files /dev/null and b/ultralytics_yolov5_img2.png differ
diff --git a/unet_brain_mri.png b/unet_brain_mri.png
new file mode 100644
index 000000000..397719f37
Binary files /dev/null and b/unet_brain_mri.png differ
diff --git a/unet_tcga_cs_4944.png b/unet_tcga_cs_4944.png
new file mode 100644
index 000000000..d7e556675
Binary files /dev/null and b/unet_tcga_cs_4944.png differ
diff --git a/upgrade_torchvision.sh b/upgrade_torchvision.sh
new file mode 100755
index 000000000..bb365d357
--- /dev/null
+++ b/upgrade_torchvision.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+###### Usage #####
+# In hub/ directory, run:
+# ./scripts/upgrade_torchvision.sh