当前位置: 代码迷 >> 综合 >> ValueError: When passing an infinitely repeating dataset, you must specify the `steps_per_epoch` arg
  详细解决方案

ValueError: When passing an infinitely repeating dataset, you must specify the `steps_per_epoch` arg

热度:97   发布时间:2024-02-23 09:14:18.0

Tensorflow出现这个error是因为版本问题,原本机器上只有tensorflow-gpu 2.0,安装和升级到tensorflow 2.3.1 & tensorflow-gpu 2.3.1以后自然而然的解决了。

附上Win10环境下使用anaconda更新tensorflow本版代码:

在anaconda prompt中,输入:

pip install --user --upgrade --ignore-installed tensorflow

gpu版本输入:

pip install --user --upgrade --ignore-installed tensorflow-gpu

 

  相关解决方案