How to Install tensorflow addons via conda

给你一囗甜甜゛ 提交于 2020-04-13 16:59:01

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!