PyTorch: Difference between revisions

From David's Wiki
No edit summary
Line 6: Line 6:


# If using conda, python 3.5+, and CUDA 10.0 (+ compatible cudnn)
# If using conda, python 3.5+, and CUDA 10.0 (+ compatible cudnn)
conda install pytorch torchvision cudatoolkit=10.1 -c pytorch
conda install pytorch torchvision cudatoolkit=10.0 -c pytorch
</syntaxhighlight>
</syntaxhighlight>


==Usage==
==Usage==

Revision as of 20:12, 2 January 2020

PyTorch is a popular machine learning library developed by Facebook

Installation

See PyTorch Getting Started

# If using conda, python 3.5+, and CUDA 10.0 (+ compatible cudnn)
conda install pytorch torchvision cudatoolkit=10.0 -c pytorch

Usage