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
:param forced_generation: See documentation about multi-version prediction
27
27
:param dispatch_key: See documentation about multi-version prediction
28
28
:param context: Optional, Python dictionary of additional context information. The context information is logged, but not directly used.
29
-
:param with_explanations: Optional, whether individual explanations should be computed for each records. The prediction endpoint must be compatible.
30
-
:param explanation_method: Optional, method to compute those explanations. If None, will use the value configured in the endpoint.
29
+
:param with_explanations: Optional, whether individual explanations should be computed for each record. The prediction endpoint must be compatible. If None, will use the value configured in the endpoint.
30
+
:param explanation_method: Optional, method to compute explanations. Valid values are 'SHAPLEY' or 'ICE'. If None, will use the value configured in the endpoint.
31
31
:param n_explanations: Optional, number of explanations to output per prediction. If None, will use the value configured in the endpoint.
32
32
:param n_explanations_mc_steps: Optional, precision parameter for SHAPLEY method, higher means more precise but slower (between 25 and 400).
33
33
If None, will use the value configured in the endpoint.
:param records: Python list of records. Each record must be a Python dict. Each record must contain a "features" dict (see predict_record) and optionally a "context" dict.
63
63
:param forced_generation: See documentation about multi-version prediction
64
64
:param dispatch_key: See documentation about multi-version prediction
65
-
:param with_explanations: Optional, whether individual explanations should be computed for each records. The prediction endpoint must be compatible.
66
-
:param explanation_method: Optional, method to compute those explanations. If None, will use the value configured in the endpoint.
65
+
:param with_explanations: Optional, whether individual explanations should be computed for each record. The prediction endpoint must be compatible. If None, will use the value configured in the endpoint.
66
+
:param explanation_method: Optional, method to compute explanations. Valid values are 'SHAPLEY' or 'ICE'. If None, will use the value configured in the endpoint.
67
67
:param n_explanations: Optional, number of explanations to output per prediction. If None, will use the value configured in the endpoint.
68
68
:param n_explanations_mc_steps: Optional, precision parameter for SHAPLEY method, higher means more precise but slower (between 25 and 400).
69
69
If None, will use the value configured in the endpoint.
0 commit comments