Tensorflow Keras load_model報錯got an unexpected keyword argument ‘ragged‘
因專案需要,訓練了一個模型。
儲存為H5檔案。
model.save(project_name + ".h5")
開始載入模型:
model = load_model(project_name + ".h5")
看似完美,但是執行時卻報錯了:
TypeError: __init__() got an unexpected keyword argument 'ragged'
經過試驗,發現是load_model函式呼叫有問題
原來我用的是:from keras.models import load_model,報錯。
換成:
from tensorflow.keras.models import load_model
這個問題就迎刃而解了,至於為什麼,個人猜測是Tensorflow與Keras版本不一致導致報錯的。
我的版本是:
tensorflow 2.1.0
Keras 2.3.1
不知有沒有大佬可以解答一下~~~Tks~~~
相關文章
- HTTPSConnection.__init__() got an unexpected keyword argument check_hostnameHTTPGo
- Python基礎——positional argument vs keyword argumentPython
- SyntaxError: Unexpected keyword 'const'?Error
- npm 安裝 uirecorder 報錯 Unexpected tokenNPMUI
- TypeError: The ‘compilation‘ argument must be an instance of Compilation 報錯Error
- Tensorflow-keras 理論 & 實戰Keras
- JN專案-Hibernate報錯unexpected token: select
- shell 指令碼報錯^M: syntax error near unexpected token指令碼Error
- Keras/Tensorflow選擇GPU/CPU執行KerasGPU
- SciTech-BigDataAIML-Tensorflow-Keras是用在Tensorflow的高層APIAIKerasAPI
- TensorFlow2.0教程-使用keras訓練模型Keras模型
- Keras 轉換成 Tensorflow 模型格式並使用Keras模型
- TensorFlow2.0 + CNN + keras + 人臉識別CNNKeras
- Tensorflow2的Keras介面:compile、fitKerasCompile
- jq jsonp跨域報錯之“Unexpected token :”的解決方案JSON跨域
- 解決vue-cli element-ui打包報錯Unexpected token: operator (>)VueUI
- Linux 下Anaconda 安裝 Tensorflow 和 kerasLinuxKeras
- Pycharm:設定完Anaconda後報錯TypeError: an integer is required (got type bytes)PyCharmErrorUIGo
- yolov5 train報錯:TypeError: expected np.ndarray (got numpy.ndarray)YOLOAIErrorGo
- Keras結合Keras後端搭建個性化神經網路模型(不用原生Tensorflow)Keras後端神經網路模型
- Python第3享:出現unexpected indent報錯的幾種原因?Python
- 教程帖:使用TensorFlow服務和Flask部署Keras模型!FlaskKeras模型
- jetson nano jetpack4.4.1 下安裝 tensorflow gpu + kerasNaNJetpackGPUKeras
- Keras:基於Theano和TensorFlow的深度學習庫Keras深度學習
- windows 10 64bit下安裝Tensorflow+KerasWindowsKeras
- TensorFlow 2.0中的tf.keras和Keras有何區別?為什麼以後一定要用tf.keras?Keras
- jquery Ajax 請求錯誤 Unexpected tokenjQuery
- ORA-600(evapth : unexpected evaluation)錯誤APT
- npm報錯 TypeError [ERR_INVALID_ARG_TYPE]: The “path“ argument must be of type string.Received undefineNPMError
- 關於報錯An unexpected error occurred: “https://registry.yarnpkg.com/react: socket hang up“ErrorHTTPYarnReact
- Python錯誤集錦:IndentationError: unexpected indentPythonError
- webpack打包vue檔案時報錯`Unexpected token:`WebVue
- vue報錯:[Vue warn]: Invalid prop: type check failed for prop "value". Expected Number, got String....VueAIGo
- [譯]標準化Keras:TensorFlow 2.0中的高階API指南KerasAPI
- 如何將keras訓練的模型轉換成tensorflow lite模型Keras模型
- keras轉tensorflow lite【方法二】直接轉:簡單模型例項Keras模型
- Python TensorFlow深度神經網路迴歸:keras.SequentialPython神經網路Keras
- 利用TensorFlow和Keras進行比特幣價格預測Keras比特幣