How to get 'feeded_var_names' and 'target_vars' so that I can save the inference model?
Created by: prakharg24
I am new to paddlepaddle. I am trying to reproduce the code present here ->
https://github.com/PaddlePaddle/models/blob/develop/PaddleCV/ssd/train.py
But instead of using save_persistables, I want to do save_inference_model
However save_inference_model requires two extra inputs, 'feeded_var_names' and 'target_vars'. From where can I get this input?
In short, how do I edit the code present in train.py in the repository above, so that I can use save_inference_model instead of save_persistables? (line 225)
Thank You.