I am not really a tensorflow expert. I have been using it with provided models and code, played around a bit and am trying to get better with it.
I got a hold of a model that I'd like to play around with in the form of a tensorflowjs model (?). It is in the form a model.json with some "shard1ofX" files. I also got some JS code to accompany it which I kind of understand, but I am not really a JS developer and also would like to use the model and code not on the net but in a standalone application.
The model gets loaded like that in the JS implementation:
tf.loadGraphModel(path_to_model_json)
Is it somehow possible to read said model in the Python tensorflow implementation to use it? Googling around I found a ton of information about converting a model TO tensorflowjs format, but not the other way around.
Help would be greatly appreciated!