模块Tensorflow没有属性KMeans

时间:2019-05-27 23:13:59

标签: python tensorflow k-means

我正在使用Tensorflow计算DELF功能。 我正在使用来自tensorflow模型的下一个示例: github

所以这里有一行:

kmeans = tf.estimator.experimental.KMeans(...)

但是我没有这样的模型:

  

AttributeError:模块   'tensorflow_estimator.python.estimator.api.estimator.experimental'具有   没有属性“ KMeans”

我的配置: 张量板1.13.1 py37hf484d3e_0
tensorflow 1.13.1 gpu_py37hc158e3b_0
基于tensorflow的1.13.1 gpu_py37h8d69cac_0
tensorflow-estimator 1.13.0 py_0
tensorflow-gpu 1.13.1 h0d30ee6_0


看起来已替换了此模型,但我找不到位置。

1 个答案:

答案 0 :(得分:2)

从tensorflow使用KMeans的正确语法是

tf.contrib.factorization.KMeansClustering()

有关参数和更多信息,请阅读this