You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the booleanExpression in the boolean questions is currently not optimized. E..g, in the case when it's statically true/false, we could simply use [true]/[false] to avoid the computation, or even avoid running the query entirely.
The text was updated successfully, but these errors were encountered:
Yeah you'll want to add the filter optimization right away because it also normalizes the filters and sorts it by parameter name, which you need for training.
the
booleanExpression
in the boolean questions is currently not optimized. E..g, in the case when it's statically true/false, we could simply use[true]
/[false]
to avoid the computation, or even avoid running the query entirely.The text was updated successfully, but these errors were encountered: