Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MLAir
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
esde
machine-learning
MLAir
Commits
1c85f1a0
Commit
1c85f1a0
authored
4 years ago
by
lukas leufen
Browse files
Options
Downloads
Patches
Plain Diff
abstract model class is available now for mlair
parent
e9b7cd01
Branches
Branches containing commit
Tags
Tags containing commit
3 merge requests
!136
update release branch
,
!135
Release v0.11.0
,
!119
Resolve "Include advanced data handling in workflow"
Pipeline
#41084
passed
4 years ago
Stage: test
Stage: docs
Stage: pages
Stage: deploy
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
mlair/__init__.py
+2
-1
2 additions, 1 deletion
mlair/__init__.py
mlair/model_modules/__init__.py
+2
-0
2 additions, 0 deletions
mlair/model_modules/__init__.py
with
4 additions
and
1 deletion
mlair/__init__.py
+
2
−
1
View file @
1c85f1a0
...
@@ -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
():
...
...
This diff is collapsed.
Click to expand it.
mlair/model_modules/__init__.py
+
2
−
0
View file @
1c85f1a0
"""
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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment