Reputation: 697
I cannot find it out. Does Conda support it?
conda install tensorflow-addons
cannot find out the package
Upvotes: 17
Views: 21839
Reputation: 1134
You can find information related to TensorFlow Addons here. Currently, it looks like Conda does not support Tensorflow Addons yet. You will have to wait for it to be implemented in the future. Otherwise, you can use pip install tensorflow-addons
.
Upvotes: 12
Reputation: 51
conda install -c esri tensorflow-addons
or
conda install -c esri/label/prerelease tensorflow-addons
https://anaconda.org/esri/tensorflow-addons
Upvotes: 5
Reputation: 169
You can use pip in your Anaconda environment to install tensorflow-addons.
pip install tensorflow-addons
then to use:
import tensorflow_addons as tfa
I was able to successfully import it and use InstanceNormalization
Upvotes: 8
Reputation: 89
To install the latest version of addons, run the following:
pip install tensorflow-addons
To use addons:
import tensorflow as tf
import tensorflow_addons as tfa
For more information please refer the below link
Upvotes: 1