-
Notifications
You must be signed in to change notification settings - Fork 461
How to retrieve the best working model for application? #435
Comments
Hi and welcome! :-) |
Does this load the best model or just load the latest model? Some times when i train, the latest evaluation model seems to perform worst then the previous ones. |
It loads the model in the latest file stored in the checkpoint directory. |
Hi, sorry for the trouble again. I am still unsure of how to load and use a model Currently, i am using the following code to use the step model to see the decision at each state env_params = GymVectorEnvironment(level='MachineSimple-v0') However, this requires me to train a model and use it immediately. Is there a place to store and load the model? I was expecting something similar like model.fit()/model.load() and model.predict() |
The last code block in the Quick Start Guide tutorial seems to only load check point and evaluate it. However, i am need to use the .step() method to output a decision for my use case. is there a way to go about doing this? |
For future searchers and @e0003315, take a look at #374. The comment has a good example of doing this. |
Hi, i am new to coach. I was following the tutorial for using coach as a library. I was able to reach coach.run() and successfully train the model and view the results in the dashboard.
How do i now load the best model that it has trained to test it out manually?
Is there a command like coach.load(model)?
The text was updated successfully, but these errors were encountered: