Skip to content
Snippets Groups Projects
Commit 749b5013 authored by dmt's avatar dmt
Browse files

Define reconstruction api endpoint.

parent 18d252bc
No related branches found
No related tags found
No related merge requests found
......@@ -117,6 +117,11 @@ def feature_selection(filter_ml_model, embedded_ml_model):
return feature_selection_usecase.execute(feature_selection_req)
def reconstruction(*args, **kwargs):
settings = specific_settings_factory("reconstruction")
reconstruction_req = ReconstructionRequest(settings)
reconstruction_usecase = ReconstructionUsecase()
return reconstruction_usecase.execute(reconstruction_req)
def search_knowledge(constructor, reconstructor, data_source):
deconstruction_settings = specific_settings_factory("deconstruction")
......
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