chovanecm / sacredboard

Dashboard for sacred. Monitor and access your past machine learning experiments.
MIT License
184 stars 39 forks source link

Filter results by run info #105

Closed hamed closed 5 years ago

hamed commented 5 years ago

This lovely fronted to sacred only misses one feature that I need (for now :)

In sacred board it is possible to filter the results by config, it would be nice to also filter them based on run info. As far as I understood, the configurations are set before the experiment runs, so they can not be updated. On the other hand, I would like to save some alternative results/intermediate results/updated hyper parameters. I can store them in run info, but then I can not use them to select or sort models.

chovanecm commented 5 years ago

Hi, you can actually filter experiments by almost anything in experiment record (provided that you know the "path" to the information in the model).

Have you noticed the question mark next to the filter input box? It says that you can prefix the query with a leading "." (dot) like in one of the pictures below to query against the "root" of the experiment.

image

https://github.com/chovanecm/sacredboard/blob/develop/docs/screenshots.md

hamed commented 5 years ago

Thank you very much! You saved my day!