我正在尝试使用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'