Home
last modified time | relevance | path

Searched refs:response_method (Results 1 – 25 of 30) sorted by relevance

12

/dports/science/py-scikit-learn/scikit-learn-1.0.2/sklearn/inspection/
H A D_partial_dependence.py130 if response_method == "auto":
136 if response_method == "predict_proba"
140 if response_method == "auto":
145 elif response_method == "predict_proba":
213 response_method="auto", argument
399 if response_method not in accepted_responses:
405 if is_regressor(estimator) and response_method != "auto":
462 if response_method == "auto":
463 response_method = "decision_function"
465 if response_method != "decision_function":
[all …]
/dports/science/py-scikit-learn/scikit-learn-1.0.2/sklearn/metrics/_plot/
H A Dbase.py4 def _check_classifier_response_method(estimator, response_method): argument
24 if response_method not in ("predict_proba", "decision_function", "auto"):
30 if response_method != "auto":
31 prediction_method = getattr(estimator, response_method, None)
34 error_msg.format(response_method, estimator.__class__.__name__)
50 def _get_response(X, estimator, response_method, pos_label=None): argument
91 prediction_method = _check_classifier_response_method(estimator, response_method)
H A Droc_curve.py149 response_method="auto", argument
234 response_method=response_method,
365 response_method="auto", argument
452 X, estimator, response_method, pos_label=pos_label
H A Ddet_curve.py91 response_method="auto", argument
176 response_method,
365 response_method="auto", argument
458 X, estimator, response_method, pos_label=pos_label
H A Dprecision_recall_curve.py166 response_method="auto", argument
243 response_method,
363 response_method="auto", argument
434 X, estimator, response_method, pos_label=pos_label
/dports/science/py-scikit-learn/scikit-learn-1.0.2/sklearn/metrics/_plot/tests/
H A Dtest_plot_precision_recall.py80 def test_error_bad_response(pyplot, response_method, msg): argument
92 plot_precision_recall_curve(clf, X, y, response_method=response_method)
97 def test_plot_precision_recall(pyplot, response_method, with_sample_weight): argument
113 response_method=response_method,
117 y_score = getattr(lr, response_method)(X)
118 if response_method == "predict_proba":
204 def test_plot_precision_recall_pos_label(pyplot, response_method): argument
232 classifier, X_test, y_test, pos_label="cancer", response_method=response_method
244 response_method=response_method,
H A Dtest_plot_roc_curve.py43 response_method, argument
74 y_pred = getattr(lr, response_method)(X)
132 def test_plot_roc_curve_pos_label(pyplot, response_method): argument
160 classifier, X_test, y_test, pos_label="cancer", response_method=response_method
172 response_method=response_method,
H A Dtest_precision_recall_display.py80 def test_precision_recall_display_plotting(pyplot, constructor_name, response_method): argument
88 y_pred = getattr(classifier, response_method)(X)
96 classifier, X, y, response_method=response_method
235 def test_plot_precision_recall_pos_label(pyplot, constructor_name, response_method): argument
262 y_pred = getattr(classifier, response_method)(X_test)
274 response_method=response_method,
293 response_method=response_method,
H A Dtest_roc_curve_display.py48 response_method, argument
73 y_pred = getattr(lr, response_method)(X)
182 def test_plot_roc_curve_pos_label(pyplot, response_method, constructor_name): argument
209 y_pred = getattr(classifier, response_method)(X_test)
221 response_method=response_method,
240 response_method=response_method,
H A Dtest_base.py47 X_binary, classifier, response_method="predict_proba"
53 X_binary, classifier, response_method="predict_proba", pos_label=0
66 X_binary, classifier, response_method="decision_function"
72 X_binary, classifier, response_method="decision_function", pos_label=0
H A Dtest_common_curve_display.py74 response_method, argument
90 Display.from_estimator(clf, X, y, response_method=response_method)
H A Dtest_plot_curve_common.py73 response_method, argument
87 plot_func(clf, X, y, response_method=response_method)
H A Dtest_plot_det_curve.py29 pyplot, response_method, data_binary, with_sample_weight, with_strings argument
55 y_pred = getattr(lr, response_method)(X)
H A Dtest_det_curve_display.py17 pyplot, constructor_name, response_method, with_sample_weight, with_strings argument
36 y_pred = getattr(lr, response_method)(X)
/dports/science/py-scikit-learn/scikit-learn-1.0.2/sklearn/inspection/_plot/
H A Dpartial_dependence.py32 response_method="auto",
295 response_method=response_method,
321 response_method="auto",
441 response_method=response_method,
674 response_method="auto",
919 response_method=response_method,
/dports/devel/youcompleteme/YouCompleteMe-ab73ca2/python/ycm/tests/
H A Dcompletion_test.py37 def MockCompletionRequest( response_method ): argument
52 side_effect = response_method ):
57 def MockResolveRequest( response_method ): argument
67 side_effect = response_method ):
H A Devent_notification_test.py58 def MockEventNotification( response_method, native_filetype_completer = True ): argument
76 side_effect = response_method ):
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/api/helpers/
H A Dauthentication_spec.rb92 shared_examples 'stops early' do |response_method|
93 it "calls ##{response_method}" do
95 expect(object).to receive(response_method).and_raise(errcls)
/dports/security/lasso/lasso-2.7.0/lasso/id-ff/
H A Dlogout.c744 LassoHttpMethod response_method; in lasso_logout_process_response_msg() local
765 response_method = LASSO_HTTP_METHOD_SOAP; in lasso_logout_process_response_msg()
768 response_method = LASSO_HTTP_METHOD_REDIRECT; in lasso_logout_process_response_msg()
855 if ( response_method == LASSO_HTTP_METHOD_SOAP || in lasso_logout_process_response_msg()
857 response_method == LASSO_HTTP_METHOD_REDIRECT) ) { in lasso_logout_process_response_msg()
/dports/security/lasso/lasso-2.7.0/lasso/saml-2.0/
H A Dlogout.c343 LassoHttpMethod response_method; in lasso_saml20_logout_process_response_msg() local
350 &response_method, response_msg)); in lasso_saml20_logout_process_response_msg()
H A Dprofileprivate.h65 …*profile, LassoSamlp2StatusResponse *response_node, LassoHttpMethod *response_method, const char *…
H A Dprofile.c1364 LassoHttpMethod *response_method, in lasso_saml20_profile_process_any_response() argument
1390 if (response_method) { in lasso_saml20_profile_process_any_response()
1393 *response_method = LASSO_HTTP_METHOD_SOAP; in lasso_saml20_profile_process_any_response()
1396 *response_method = LASSO_HTTP_METHOD_REDIRECT; in lasso_saml20_profile_process_any_response()
1399 *response_method = LASSO_HTTP_METHOD_POST; in lasso_saml20_profile_process_any_response()
/dports/science/py-scikit-learn/scikit-learn-1.0.2/sklearn/linear_model/tests/
H A Dtest_passive_aggressive.py143 def test_classifier_undefined_methods(response_method): argument
146 getattr(clf, response_method)
/dports/science/py-scikit-learn/scikit-learn-1.0.2/sklearn/inspection/tests/
H A Dtest_partial_dependence.py225 est, grid, features, X, response_method="auto"
336 response_method="decision_function",
344 response_method="decision_function",
/dports/net/rabbiteer/rabbiteer-rs-c881238/cargo-crates/amqp-0.1.1/src/
H A Dsession.rs167 response_method => { in init()
168 return Err(AMQPError::Protocol(format!("Unexpected response: {}", response_method))) in init()

12