tensorflow 2.0中的tensor_forest在哪里

时间:2019-04-02 00:54:47

标签: tensorflow

我正在尝试使用tensorflow 2.0实现一个随机森林。我看过许多示例(https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/2_BasicModels/random_forest.py),但是这些示例与tensorflow 2.0不兼容。我试图弄清楚2.0中是否支持tensor_forests以及在哪里可以找到它们。

我知道contrib模块不受支持,并且这些模块应该已经移至核心模块或附加模块。但是,我找不到任何提及它已移至何处的信息。我已经运行了后台脚本,但无法解决问题。我还尝试过按照迁移指南中的建议删除contrib符号,但没有成功。

Traceback (most recent call last):
  File "testFileUpgraded.py", line 12, in <module>
    from tensorflow.contrib.tensor_forest.python import tensor_forest
ModuleNotFoundError: No module named 'tensorflow.contrib'

1 个答案:

答案 0 :(得分:0)

从tensor_flow v2.0.0起,

tensorflow.contrib 模块已被删除,请参见issue #93

不幸的是,在将contrib中的某些模块迁移到其他模块时,似乎还有很多工作要做。 tensor_forest 模块将移至核心,但这尚未完成

enter image description here

详细信息here