- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 381 - 390 of 1,752 for test (0.07 sec)
-
RadiusNeighborsClassifier — scikit-learn 1.7.de...
or None Test samples. If None , predictions...probability estimates for the test data X. Parameters : X {array-like,...scikit-learn.org/dev/modules/generated/sklearn.neighbors.RadiusNeighborsClassifier.html -
Common pitfalls in the interpretation of coeffi...
import train_test_split X_train , X_test , y_train , y_test = train_test_split...predict ( X_test ) mae_test = median_absolute_error ( y_test , y_pred...scikit-learn.org/stable/auto_examples/inspection/plot_linear_model_coefficient_interpretation.html -
1.6. Nearest Neighbors — scikit-learn 1.6.0 doc...
X_test , y_train , y_test = train_test_split ( X ,...( nca_pipe . score ( X_test , y_test )) 0.96190476... The plot...scikit-learn.org/stable/modules/neighbors.html -
Effect of varying threshold for self-training —...
train_index ] X_test = X [ test_index ] y_test = y [ test_index ] y_test_true...y_test_true = y_true [ test_index ] self_training_clf . fit (...scikit-learn.org/stable/auto_examples/semi_supervised/plot_self_training_varying_threshold.html -
Action定義のテスト (ActionDefTest) | LastaFlute
src/main/resources // メインのリソース置き場 src/test/java // テストクラス置き場 |-org.docksidestage...UnitDocksideTestCase { public void test_component() throws Exception...dbflute.seasar.org/ja/lastaflute/howto/action/actiondeftest.html -
7.2. Real world datasets — scikit-learn 1.6.0 d...
newsgroups_test = fetch_20newsgroups ( subset = 'test' , ... categories...vectors_test = vectorizer . transform ( newsgroups_test . data...scikit-learn.org/stable/datasets/real_world.html -
DBFluteのEclipseコード補完 | LastaFlute
UTFluteのテストメソッドを補完 (_test) _test (TEST) e.g. UTFluteのテストメソッドを補完 @Java _test .......addOrderBy_${columnName} _test UTFlute, testメソッド補完、Arrange,Act,Assert付き...dbflute.seasar.org/ja/tutorial/eclipse/dfclipsecomp.html -
Multi-output Decision Tree Regression — scikit-...
predict ( X_test ) y_2 = regr_2 . predict ( X_test ) y_3 = regr_3.... fit ( X , y ) # Predict X_test = np . arange ( - 100.0 , 100.0...scikit-learn.org/stable/auto_examples/tree/plot_tree_regression_multioutput.html -
Curve Fitting with Bayesian Ridge Regression — ...
increasing = True ) X_test = np . vander ( x_test , n_order + 1 , increasing...predict ( X_test , return_std = True ) ax . plot ( x_test , func (...scikit-learn.org/stable/auto_examples/linear_model/plot_bayesian_ridge_curvefit.html -
One-class SVM with non-linear kernel (RBF) — sc...
size n_error_test = y_pred_test [ y_pred_test == - 1 ] . size...X_train ) y_pred_test = clf . predict ( X_test ) y_pred_outliers...scikit-learn.org/stable/auto_examples/svm/plot_oneclass.html