From 2b0d9ce1fc77ccd2c24cc51b594e5d8ed7bd590c Mon Sep 17 00:00:00 2001
From: dmt <>
Date: Fri, 18 Oct 2019 23:03:08 +0200
Subject: [PATCH] Define feature selection endpoint.

---
 cml/controller/api.py | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/cml/controller/api.py b/cml/controller/api.py
index e02d2fb..ee3046a 100644
--- a/cml/controller/api.py
+++ b/cml/controller/api.py
@@ -106,8 +106,16 @@ def construction(construct_type, *args, **kwargs):
     return create_construction_usecase.execute(create_constructor_req)
 
 
-def reconstruction():
-    pass
+def feature_selection(filter_ml_model, embedded_ml_model):
+    filter_method = FilterMethod(filter_ml_model)
+    embedded_method = EmbeddedMethod(embedded_ml_model)
+    settings = specific_settings_factory("feature_selection")
+    feature_selection_req = FeatureSelectionRequest(filter_method,
+                                                    embedded_method,
+                                                    settings)
+    feature_selection_usecase = FeatureSelectionUsecase()
+    return feature_selection_usecase.execute(feature_selection_req)
+
 
 
 def search_knowledge(constructor, reconstructor, data_source):
-- 
GitLab