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
In the function for specifying your target quantities el.target, the possibility to specify a custom target quantity using the target_method argument is not yet implemented:
el.target(
name="custom_target",
target_method=custom_func(user_arg, **kwargs), # this function hasn't been implemented yet
query=el.queries.quantile((25, 50, 75)),
loss=el.losses.MMD2(kernel="energy"),
weight=1.0
)
Note that we need to differentiate between function arguments that are set by the user and those that come from previous workflow steps (e.g. output of the generative model).
The text was updated successfully, but these errors were encountered:
In the function for specifying your target quantities
el.target
, the possibility to specify a custom target quantity using thetarget_method
argument is not yet implemented:Note that we need to differentiate between function arguments that are set by the user and those that come from previous workflow steps (e.g. output of the generative model).
The text was updated successfully, but these errors were encountered: