Minnesota Supercomputing Institute
1.3_gpu, 1.3_gpu_python3, 1.4_gpu, 1.4_gpu_python3
Tuesday, August 29, 2023
From the Tensorflow website:
TensorFlow is an open source software library for numerical computation using data flow graphs. Nodes in the graph represent mathematical operations, while the graph edges represent the multidimensional data arrays (tensors) communicated between them. TensorFlow was originally developed by researchers and engineers working on the Google Brain Team within Google's Machine Intelligence research organization for the purposes of conducting machine learning and deep neural networks research, but the system is general enough to be applicable in a wide variety of other domains as well.
module load python mamba create -n my_tensorflow python=3 tensorflow -c conda-forge
module load python source activate my_tensorflow
mamba create -n my_tensorflow python=3 tensorflow-gpu -c anaconda
Tensorflow is available for use on MSI's Mesabi k40 nodes. To load tensorflow into your environment, use the following command:
module load tensorflow
Tensorflow is frequently used via its python interface. To use tensorflow in this manner after loading in the module, use the following procedure:
python >>> import tensorflow as tf
There are a variety of tutorials available for using tensorflow on the official website.