model_path = tf.python.keras.utils.get_file代码报错AttributeError: module 'tensorflow' has no attribute 'python'
时间: 2023-06-13 14:06:45 浏览: 199
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误可能是因为你使用的TensorFlow版本较新,而`tf.python`已被废弃。
你可以尝试使用以下代码来获取模型路径:
```
import tensorflow as tf
import os
model_path = tf.keras.utils.get_file(
fname="model_name",
origin="model_url",
cache_dir=os.path.join(os.getcwd(), "model_cache")
)
```
其中,`fname`是你想要保存模型的名称,`origin`是模型下载链接,`cache_dir`是模型保存的目录。
如果你已经下载了模型,可以直接指定`model_path`为模型的本地路径。
阅读全文