Hello
I imported a model with tensorflow 2.8’s C api and it outputs different predictions for the same test data set from the original keras model in Python. The model was exported in Python with
model.save(‘models/model1’)
I import it later on in C with:
TF_LoadSessionFromSavedModel
Do you know how I could visualize the model with weights in both Python and C to compare I am using exactly the same model with the same weights in both cases?
Thanks
submitted by /u/goahead97
[visit reddit] [comments]