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
Almost all study participants were not able to interpret schema returned in error task. Should add some level of assistance or prose to help interpretation.
Example error message:
ValidationError: Invalid configuration for LinearSVC(penalty='l1', loss='hinge') due to constraint the combination of penalty=`l1` and loss=`hinge` is not supported.
Schema of constraint 1: {
"description": "The combination of penalty=`l1` and loss=`hinge` is not supported",
"anyOf": [
{"type": "object", "properties": {"penalty": {"enum": ["l2"]}}},
{
"type": "object",
"properties": {"loss": {"enum": ["squared_hinge"]}},
},
],
}
Value: {'penalty': 'l1', 'loss': 'hinge', 'dual': True, 'tol': 0.0001, 'C': 1.0, 'multi_class': 'ovr', 'fit_intercept': True, 'intercept_scaling': 1.0, 'class_weight': None, 'verbose': 0, 'random_state': None, 'max_iter': 1000}
The text was updated successfully, but these errors were encountered:
Almost all study participants were not able to interpret schema returned in error task. Should add some level of assistance or prose to help interpretation.
Example error message:
The text was updated successfully, but these errors were encountered: