-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
browse_experiments() error #121
Comments
Hey @filipeabperes, sorry for the super late response. It seems to me that you are not actually registering any experiments before calling
This is why in your second example, you don't see the error, since presumable Alternatively you can do:
which should work as well. Variants will show up if you run the code where they were defined ( Which is a bit cumbersome). If I want to import experiments and their variants, what I usually is do is something like this:
And in
Hope that helps! Matthias |
@matthiasreisser Thanks for the reply. So what you're saying is that for you to visualize the results of an experiment, you have to re-import such experiment each time. The same goes for variants, they have to be re-added every time you want to visualize their results. Shouldn't there be a way to visualize experiments/variants without having to go through this? Seems like it would be feasible, since the results are already saved in the |
Yes. The idea is that the experiment_browser serves as the entry point for not only running experiments but also managing them. Deleting, comparing, visualizing, etc. You don't have to use the experiment browser though. The
|
I think what Matthias said about |
When running
browse_experiments()
I get the following error (substituted in)If I open any of the experiments directly via
The UI pops up but no runs of variants are shown. Not sure if I'm doing anything wrong. Ideas?
The text was updated successfully, but these errors were encountered: