Hi,
Is there a simple way to load with Julia a h5 file created with Python3-Keras without rebuilding this h5 model ?
More precisely, what should be the Julia version of this simple Python3 script :
# Python3 code of the load of a Python3-Keras h5 model :
import numpy as np
from keras.models import load_model
best_model = load_model('model.h5')
dim_1=24
dim_2=46
x=np.zeros((dim_1,dim_2))
simulation = best_model.predict(x)
Is there a way by using Flux.jl ? Or with another ML package such as onnx.jl ?
Thanks very much !