i was trying to extract the Hyperparameter combination with it’s loss/score. is it possible to do so? i want to inspect all possible combination and its losses
what kind of command i can use?
i am using DL4j-example repository with specific model on
BasicHyperparameterOptimizationExample.java
You can’t get all candidates after the training is done, keeping them all can take a lot of memory.
But, if you want to collect them yourself, you can do this by implementing the StatusListener Interface.
Yes, you can get all candidates. Optimization uses ResultSaver interface to save all candidates generated, and you can use ResultReference interface to read the candidates after the optimization is done.
I have used these interfaces to write model structures and result scores to a database.
But if you just want to read the results in Java code, you may be fine with the file based implementation FileModelSaver and LocalFileNetResultReference that is used in the example.
See LocalFileNetResultReference and FileModelSaver