Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

We want to create a software installation of TensorFlow (an end-to-end platform for machine learning) that can be shared acorss across a project by all users.

From the documentation (as of time of writing):

...

Code Block
[brewer@mblog2 ~]$ module load miniconda3/24.3.0
[brewer@mblog2 ~]$ conda activate /project/arcc/software/tensorflow/2.16/
(/project/arcc/software/tensorflow/2.16) [brewer@mblog2 ~]$ python -c "import tensorflow as tf; print(\"TensorFlow Version: \" + str( tf.__version__))"
...
TensorFlow Version: 2.16.1
(/project/arcc/software/tensorflow/2.16) [brewer@mblog2 ~]$ conda deactivate
[brewer@mblog2 ~]$ 

...