Skip to content
Snippets Groups Projects
Commit 815e06d2 authored by dmt's avatar dmt
Browse files

Implement DeconstructionRequest.

parent 0ef04208
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,7 @@ from cml.domain.reconstruction import Reconstructor
from cml.domain.data_source import DataSource
from cml.domain.construction import Constructor
from cml.domain.complexity_reduction import FeatureSelector
from cml.domain.deconstruction import Deconstructor
from cml.shared.settings import (
PreprocessingSettings,
BlockProcessingSettings,
......@@ -31,11 +32,17 @@ class KnowledgeSearchRequest:
constructor: Constructor
feature_selector: FeatureSelector
reconstructor: Reconstructor
deconstructor: Deconstructor
data_source: DataSource
deconstruction_settings: DeconstructionSettings
stdout: bool
@dataclass
class DeconstructionRequest:
settings: DeconstructionSettings
knowledge_type: str
@dataclass
class CreateConstructorRequest:
settings: ConstructionSettings
......
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