Hi, for Sentic-GCN Bert config file, for evaluation, what does the "model_path" refer to?
Hi, the "model_path" configuration refers to either a local folder path that contains the model weights and model config file or a URL address pointing a folder to a cloud storage bucket folder containing the same items (e.g. the default path for "model_path" points to the pre-trained weights and config trained by AI Singapore).
For details, please refer to the code here where the "model_path" configuration is used.
Thank you.
Hi thank you for the prompt reply, the folder that contains the model weights and model config file is generated after training our model? and is the sample config file default "model_path" use-able or we will have to change it? Thank you!
Hi, what is the difference between "save_model_path" and "model_path" under eval_args?
Hi,
The "save_model_path" is used as the folder path to save the trained model weights and configuration after the training has been completed (as mentioned), but those are not necessary the input you would like to use for future prediction removed link
The "model_path" is where the code looks for the weights/config to be used for training removed link
You should place there the weights/config you wish to use.
If you wish to use a recently trained model (weights/config), then you will need to transfer those from the "save_model_path" to the "model_path" directory.