From dcc5e9ad74fc529653a04ed7cbd37ae92d49f356 Mon Sep 17 00:00:00 2001 From: Montana Low Date: Wed, 3 Jan 2024 10:41:28 -0800 Subject: [PATCH] fix typo --- pgml-extension/src/orm/algorithm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgml-extension/src/orm/algorithm.rs b/pgml-extension/src/orm/algorithm.rs index b0833eb4d..a8a72d1fb 100644 --- a/pgml-extension/src/orm/algorithm.rs +++ b/pgml-extension/src/orm/algorithm.rs @@ -143,7 +143,7 @@ impl std::string::ToString for Algorithm { Algorithm::linear_svm => "linear_svm".to_string(), Algorithm::lightgbm => "lightgbm".to_string(), Algorithm::transformers => "transformers".to_string(), - Algorithm::affinity_propagation => "transformers".to_string(), + Algorithm::affinity_propagation => "affinity_propagation".to_string(), Algorithm::birch => "birch".to_string(), Algorithm::feature_agglomeration => "feature_agglomeration".to_string(), Algorithm::mini_batch_kmeans => "mini_batch_kmeans".to_string(),