Skip to content
Snippets Groups Projects
Commit 1c85f1a0 authored by lukas leufen's avatar lukas leufen
Browse files

abstract model class is available now for mlair

parent e9b7cd01
Branches
Tags
3 merge requests!136update release branch,!135Release v0.11.0,!119Resolve "Include advanced data handling in workflow"
Pipeline #41084 passed
...@@ -4,9 +4,10 @@ __version_info__ = { ...@@ -4,9 +4,10 @@ __version_info__ = {
'micro': 0, 'micro': 0,
} }
from mlair.run_modules import * from mlair.run_modules import RunEnvironment, ExperimentSetup, PreProcessing, ModelSetup, Training, PostProcessing
from mlair.workflows import DefaultWorkflow, Workflow from mlair.workflows import DefaultWorkflow, Workflow
from mlair.run_script import run from mlair.run_script import run
from mlair.model_modules import AbstractModelClass
def get_version(): def get_version():
......
"""Collection of all modules that are related to a model.""" """Collection of all modules that are related to a model."""
from .model_class import AbstractModelClass
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment