0
我最近升級我的keras
從1.1.0
版本1.2.2
和我跑了CNN的手勢分類(代碼使用keras 1.1.0
開發)。我保存了訓練好的模型,我嘗試使用coremltools
將其轉換爲CoreML
模型。是如下面的代碼:CoreML - 無法從Keras到CoreML執行轉換 - 視窗10
import coremltools
import theano
from keras import backend as K
K.set_image_dim_ordering('th')
coreml_model = coremltools.converters.keras.convert('hgm_2.h5')
coreml_model.save('hgm.mlmodel')
但它給了我下面的錯誤:
RuntimeError: keras not found or unsupported version or backend found. keras conversion API is disabled.
我怎樣才能解決這個問題?我嘗試升級theano
,但它給出了同樣的錯誤。