问题
I cannot find it out. Does Conda support it?
conda install tensorflow-addons
cannot find out the package
回答1:
https://blog.tensorflow.org/2019/07/introducing-tensorflow-addons.html.
You can find information related to Tensorflow Addons in the link above. 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.
回答2:
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
Tensorflow-addons
回答3:
You can use pip in Anaconda 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
来源:https://stackoverflow.com/questions/59674901/how-to-install-tensorflow-addons-via-conda