In Uber Ludwig toolbox the training from the scratch produced the following 10 files:
- checkpoint
- model_hyperparameters.json
- model_weights.data-00000-of-00001
- model_weights.index
- model_weights.meta
- model_weights_progress.data-00000-of-00001
- model_weights_progress.index
- model_weights_progress.meta
- train_set_metadata.json
- training_progress.p
I would like to export them (or only the needed ones) into one file saved_model.pb to be able to load it to my ML Engine Google platform.
I tried the freeze_graph.py script, but it requires as an input a .pb file which I do not have. (I have only the above-mentioned 10 files). How to proceed to get this one saved_model.pb file? I saw several threads, but none of them works for me.