Skip to content
Snippets Groups Projects
Commit 2b0d9ce1 authored by dmt's avatar dmt
Browse files

Define feature selection endpoint.

parent 9020f68f
No related branches found
No related tags found
No related merge requests found
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment