Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/cmccomb/rust-automl
/ functions
Functions
400 in github.com/cmccomb/rust-automl
⨍
Functions
400
◇
Types & classes
80
Function
multinomial_nb_algorithm_available_when_enabled
()
tests/classification.rs:79
Function
multinomial_nb_rejects_fractional_features
()
tests/classification.rs:329
Function
multinomial_nb_rejects_negative_features
()
tests/classification.rs:349
Function
multinomial_nb_requires_settings
()
src/algorithms/classification.rs:1375
Function
multinomial_nb_trains_and_predicts_with_non_negative_integers
()
tests/classification.rs:307
Method
new
(row: usize, column: usize, source: ParseFloatError)
src/utils/io.rs:252
Method
new
Create a new clustering model.
src/model/clustering.rs:42
Method
new
()
src/model/preprocessing.rs:73
Method
new
Create a new supervised model.
src/model/supervised.rs:141
Method
new
()
src/settings/preprocessing.rs:333
Method
new
(settings: &SVCParameters)
src/algorithms/classification.rs:275
Method
new
(settings: &SVRParameters)
src/algorithms/regression.rs:44
Method
one_hot
(drop_first: bool)
src/settings/preprocessing.rs:268
Function
pipelines_support_composed_steps
()
tests/preprocessing.rs:140
Function
polynomial_adds_squared_and_cross_terms
()
tests/features.rs:17
Function
polynomial_errors_on_empty_input
()
tests/features.rs:34
Function
power_transforms_apply_log_and_box_cox
()
tests/preprocessing.rs:98
Method
predict
Predict using the best-performing model. # Errors Returns [`ModelError::NotTrained`] if no algorithm has been trained or if inference fails.
src/model/supervised.rs:178
Method
predict
Predict cluster assignments
src/algorithms/clustering.rs:119
Function
predict_requires_training
()
tests/classification.rs:137
Function
predict_without_training_returns_error
()
tests/clustering.rs:171
Method
preprocessing_failed
(err: &SettingsError)
src/model/supervised.rs:211
Function
print_knn_search_algorithm_cover_tree
()
tests/display.rs:104
Function
print_knn_search_algorithm_linear_search
()
tests/display.rs:92
Function
print_knn_weight_function_distance
()
tests/display.rs:80
Function
print_knn_weight_function_uniform
()
tests/display.rs:68
Function
print_option_returns_none_for_none
()
tests/display.rs:20
Function
print_option_returns_value_for_some
()
tests/display.rs:8
Function
random_forest_section_labels_n_trees
()
tests/settings_display.rs:19
Function
regression_builder_delegates
()
tests/supervised_settings.rs:15
Function
regression_metric_not_set_returns_error
()
tests/settings_error.rs:19
Function
regression_metric_unsupported_returns_error
()
tests/settings_error.rs:27
Function
regression_polynomial_preprocessing_predicts
()
tests/regression.rs:238
Function
regression_standardize_pipeline_predicts
()
tests/regression.rs:268
Function
robust_scaling_centers_by_median
()
tests/preprocessing.rs:38
Method
robust_stats
( data: &InputArray, column: usize, params: &RobustScaleParams, )
src/model/preprocessing.rs:864
Function
separates_features_and_target
()
tests/load_labeled_csv.rs:5
Method
serialize
(&self, serializer: S)
src/settings/common.rs:36
Method
serialize
(&self, serializer: S)
src/settings/classification_settings.rs:241
Method
serialize
(&self, serializer: S)
src/settings/regression_settings.rs:421
Method
shuffle_data
(mut self, shuffle: bool)
src/settings/common.rs:277
Method
shuffle_data
(self, shuffle: bool)
src/settings/classification_settings.rs:141
Method
shuffle_data
(self, shuffle: bool)
src/settings/regression_settings.rs:210
Method
sorted_by
(mut self, sort_by: Metric)
src/settings/common.rs:332
Method
sorted_by
(self, sort_by: Metric)
src/settings/classification_settings.rs:200
Method
sorted_by
(self, sort_by: Metric)
src/settings/regression_settings.rs:276
Method
source
(&self)
src/utils/io.rs:33
Method
supervised
(&self)
src/settings/classification_settings.rs:219
Method
supervised_mut
(&mut self)
src/settings/classification_settings.rs:223
Function
support_vector_classifier_algorithm_available_when_enabled
()
tests/classification.rs:105
Function
support_vector_classifier_requires_settings
()
tests/classification.rs:288
Function
support_vector_classifier_trains_and_predicts
()
tests/classification.rs:151
Function
test_all_algorithms_included
()
tests/classification.rs:29
Function
test_default_classification
()
tests/classification.rs:19
Function
test_default_regression
()
tests/regression.rs:15
Function
test_extra_trees_missing_settings_error
()
tests/regression.rs:105
Function
test_extra_trees_regression_trains_successfully
()
tests/regression.rs:58
Function
test_extra_trees_skiplist_controls_algorithms
()
tests/regression.rs:84
Function
test_knn_only_regression
()
tests/regression.rs:21
Function
test_svr_missing_settings_error
()
tests/regression.rs:146
Function
test_svr_regression_multiple_kernels
()
tests/regression.rs:36
Function
test_svr_skiplist_controls_algorithms
()
tests/regression.rs:124
Function
test_xgboost_invalid_parameters_error
()
tests/regression.rs:185
Function
test_xgboost_regression_trains_successfully
()
tests/regression.rs:159
Function
test_xgboost_skiplist_controls_algorithms
()
tests/regression.rs:217
Method
to_classifier_params
Convert to smartcore KNN classifier parameters using the configured distance metric. # Errors Returns [`DistanceError::UnsupportedDistance`] if the
src/settings/knn_parameters.rs:54
Method
to_regressor_params
Convert to smartcore KNN regressor parameters using the configured distance metric. # Errors Returns [`DistanceError::UnsupportedDistance`] if the c
src/settings/knn_parameters.rs:77
Method
train
Train all available algorithms and record their performance. # Errors Returns [`Failed`] if cross-validation fails for any algorithm.
src/model/supervised.rs:158
Method
trained
( model: DenseBernoulliNB<INPUT, OUTPUT, OutputArray>, binarize: Option<INPUT>, )
src/algorithms/classification.rs:476
Method
try_from
(distance: Distance)
src/utils/distance/mod.rs:74
Method
untrained
()
src/algorithms/classification.rs:469
Method
verbose
(mut self, verbose: bool)
src/settings/common.rs:288
Method
verbose
(self, verbose: bool)
src/settings/classification_settings.rs:153
Method
verbose
(mut self, verbose: bool)
src/settings/clustering_settings.rs:106
Method
verbose
(self, verbose: bool)
src/settings/regression_settings.rs:224
Method
visit_map
(self, mut map: A)
src/settings/common.rs:111
Method
visit_map
(self, mut map: A)
src/settings/classification_settings.rs:344
Method
visit_map
(self, mut map: A)
src/settings/regression_settings.rs:510
Method
visit_str
(self, value: &str)
src/settings/common.rs:81
Method
visit_str
(self, value: &str)
src/settings/classification_settings.rs:303
Method
visit_str
(self, value: &str)
src/settings/regression_settings.rs:476
Method
with_algorithm
(mut self, algorithm: ClusteringAlgorithmName)
src/settings/clustering_settings.rs:89
Method
with_c
(mut self, c: f32)
src/settings/svc_parameters.rs:28
Method
with_eps
(mut self, eps: f64)
src/settings/clustering_settings.rs:75
Method
with_feature_range
(mut self, range: (f64, f64))
src/settings/preprocessing.rs:176
Method
with_final_model
(mut self, approach: FinalAlgorithm)
src/settings/common.rs:321
Method
with_final_model
(self, approach: FinalAlgorithm)
src/settings/classification_settings.rs:188
Method
with_final_model
(self, approach: FinalAlgorithm)
src/settings/regression_settings.rs:262
Method
with_k
(mut self, k: usize)
src/settings/clustering_settings.rs:61
Method
with_kernel
(mut self, kernel: Kernel)
src/settings/svc_parameters.rs:42
Method
with_mean
(mut self, with_mean: bool)
src/settings/preprocessing.rs:44
Method
with_number_of_folds
(mut self, n: usize)
src/settings/common.rs:266
Method
with_number_of_folds
(self, n: usize)
src/settings/classification_settings.rs:128
Method
with_number_of_folds
(self, n: usize)
src/settings/regression_settings.rs:195
Method
with_preprocessing
(mut self, pre: PreprocessingPipeline)
src/settings/common.rs:299
Method
with_preprocessing
(self, pre: PreprocessingPipeline)
src/settings/classification_settings.rs:169
Method
with_preprocessing
(self, pre: PreprocessingPipeline)
src/settings/regression_settings.rs:242
Method
with_quantile_range
(mut self, range: (f64, f64))
src/settings/preprocessing.rs:200
Method
with_std
(mut self, with_std: bool)
src/settings/preprocessing.rs:51
Method
with_tol
(mut self, tol: f32)
src/settings/svc_parameters.rs:35
← previous
301–400 of 400, ranked by callers