-
Notifications
You must be signed in to change notification settings - Fork 1
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
== Not working for Runset filters? #34
Comments
Update: my workaround of checking using
PanelGrid(runsets=[Runset(name='Run set', filters='((Config("dataset.value.name") in [I.6.2] and Config("module.value.model.hidden_layer_widths") in [[2, 2]]) and Config("module.value.model.hidden_layer_widths") == [2, 2])', order=[OrderBy(name=Metric(name='CreatedTimestamp'), ascending=False)])], panels=[ ... ], active_runset=0, custom_run_colors={'ref': {'type': 'run-colors', 'viewID': '8p9jw15lw', 'id': '6g1baxfzl'}})
.. where the output above was obtained by using this code and specifically copying the output from the panel grid section: report_thing = wr.Report.from_url(my_reports_url)
for block in report_thing.blocks:
print("\n")
print(block)
print(dir(block))
if isinstance(block, wr.PanelGrid):
print("Panel Grid detected")
break Could anyone explain how the filtering of the runsets works should be formatted for joint filters to work? Based off the documentation here, and here, I'm noticing that the filters have to get parsed into a "mongo-ish" format, but I still don't understand why my joint filters aren't working. |
Any updates? |
Good morning. It seems that using the == operator in the runsets isn't working for me. In contrast, I can get the filters I want by using the in [ ] operator. Other filters such as the != operator seem to work. Does anyone know why this is?
Working
Working
Not Working
The text was updated successfully, but these errors were encountered: