Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.pad.base
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
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
bob
bob.pad.base
Merge requests
!75
WIP: Port to dask pipelines
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
WIP: Port to dask pipelines
dask-pipelines
into
master
Overview
0
Commits
3
Pipelines
3
Changes
17
Merged
Amir MOHAMMADI
requested to merge
dask-pipelines
into
master
4 years ago
Overview
0
Commits
3
Pipelines
3
Changes
17
Expand
0
0
Merge request reports
Compare
master
version 2
7bd8f6ee
4 years ago
version 1
97899e21
4 years ago
master (base)
and
latest version
latest version
c1212823
3 commits,
4 years ago
version 2
7bd8f6ee
1 commit,
4 years ago
version 1
97899e21
1 commit,
4 years ago
17 files
+
398
−
47
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
17
Search (e.g. *.vue) (Ctrl+P)
bob/pad/base/algorithm/__init__.py
+
6
−
6
Options
from
.Algorithm
import
Algorithm
from
.SVM
import
SVM
#
from .SVM import SVM
from
.OneClassGMM
import
OneClassGMM
from
.OneClassGMM2
import
OneClassGMM2
from
.GMM
import
GMM
from
.LogRegr
import
LogRegr
from
.SVMCascadePCA
import
SVMCascadePCA
#
from .SVMCascadePCA import SVMCascadePCA
from
.Predictions
import
Predictions
,
VideoPredictions
from
.MLP
import
MLP
#
from .MLP import MLP
from
.PadLDA
import
PadLDA
# to fix sphinx warnings of not able to find classes, when path is shortened
@@ -31,14 +31,14 @@ def __appropriate__(*args):
__appropriate__
(
Algorithm
,
SVM
,
#
SVM,
OneClassGMM
,
OneClassGMM2
,
LogRegr
,
SVMCascadePCA
,
#
SVMCascadePCA,
Predictions
,
VideoPredictions
,
MLP
,
#
MLP,
PadLDA
)
Loading