Return to Image List

pytorch

pytorch

PyTorch is an open source machine learning library based on the Torch library, used for applications such as computer vision and natural language processing, primarily developed by Facebook's AI Research lab. It is free and open-source software released under the Modified BSD license. Although the Python interface is more polished and the primary focus of development, PyTorch also has a C++ interface.

See pytorch.org for more information

This image is built by IBM to run on the IBM Z architecture and is not affiliated with any other community that provides a version of this image.


License

View license information here

As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).

As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.


Versions

Use the pull string below for the version of this image you require.
1.10 docker pull icr.io/ibmz/pytorch@sha256:17a252a68c9409b61bab66ac3513428d469202c52f05f11b2fcf46bb5e6c1e98 Vulnerability Report04-30-2024
Version Pull String Security (IBM Cloud) Created

Usage Notes

A basic instance of Pytorch can be started by running the container with a docker volume containing your python code mounted at the root path / as shown below.

docker run --rm -it -v {volume_containing_your_python_code}:/ icr.io/ibmz/pytorch:1.10 python3 {your_python_code.py} 

For full Pytorch documentation and usage notes see the official website.