Douglas Blank
Douglas Blank
@eyalho You can do exactly what you like with Comet Custom Code Panels: 1. https://www.comet.ml/docs/user-interface/gallery/ 2. https://www.comet.ml/docs/user-interface/panels/ 3. https://www.comet.ml/docs/javascript-sdk/api/
Hello @Zadagu ! I think you can already do partially what you request by using the `selected` option to the confusion matrix. Although that still creates a square matrix, it...
Passing on this suggestion to the team. Thanks for the idea!
Thanks @ryanhausen ! Adding this to our list.
Thanks! Adding that to our list. BTW, you can also delete archived experiments from the comet_ml Python SDK: https://www.comet.ml/docs/python-sdk/API/#apidelete_experiments
@bradenkinard Thanks for the easily-reproducible report! We're taking a look at this.
Yes, we can reproduce the bug. Seems to be related to hydra changing the working directory away from the source code. We're working on both a workaround, and a solution.
Here is a workaround: ```python import hydra from comet_ml import Experiment @hydra.main(config_path="configs", config_name="config") def main(cfg): experiment = Experiment(project_name="my_project", log_code=False) experiment.set_code(filename=hydra.utils.to_absolute_path(__file__)) print("Hello, world") if __name__ == "__main__": main() ``` Working on...
There is now a Custom Panel for displaying Optimizer runs, and you can pin an experiment (best so far) to show with other experiments. Does that help address your request?
@Vozf Thanks for the report! What version of comet_ml are you using? We recently added some enhancements to handle exactly this. If you are using the latest comet_ml, can you...