Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.bio.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.bio.base
Merge requests
!182
An error occurred while fetching the assigned milestone of the selected merge_request.
New processor API
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
New processor API
new-processing-API
into
dask-pipelines
Overview
33
Commits
31
Pipelines
20
Changes
29
Merged
Tiago de Freitas Pereira
requested to merge
new-processing-API
into
dask-pipelines
5 years ago
Overview
5
Commits
31
Pipelines
20
Changes
29
Expand
Working with the new
bob.pipelines
API in
bob.bio.base
.
Edited
5 years ago
by
Tiago de Freitas Pereira
0
0
Merge request reports
Compare
dask-pipelines
version 19
6ec76412
5 years ago
version 18
2f6c95a0
5 years ago
version 17
a735e9e1
5 years ago
version 16
3314d165
5 years ago
version 15
6d15b2a2
5 years ago
version 14
93fac719
5 years ago
version 13
d4c01871
5 years ago
version 12
b9f0975b
5 years ago
version 11
debfe7de
5 years ago
version 10
6c2449ed
5 years ago
version 9
dc22f7ea
5 years ago
version 8
499ed374
5 years ago
version 7
328452af
5 years ago
version 6
d754d3cf
5 years ago
version 5
734eb826
5 years ago
version 4
90dc9a6b
5 years ago
version 3
62ddf1a3
5 years ago
version 2
8dbf5844
5 years ago
version 1
2467a283
5 years ago
dask-pipelines (base)
and
latest version
latest version
7613ba4b
31 commits,
5 years ago
version 19
6ec76412
29 commits,
5 years ago
version 18
2f6c95a0
26 commits,
5 years ago
version 17
a735e9e1
24 commits,
5 years ago
version 16
3314d165
23 commits,
5 years ago
version 15
6d15b2a2
22 commits,
5 years ago
version 14
93fac719
18 commits,
5 years ago
version 13
d4c01871
17 commits,
5 years ago
version 12
b9f0975b
15 commits,
5 years ago
version 11
debfe7de
13 commits,
5 years ago
version 10
6c2449ed
12 commits,
5 years ago
version 9
dc22f7ea
11 commits,
5 years ago
version 8
499ed374
10 commits,
5 years ago
version 7
328452af
9 commits,
5 years ago
version 6
d754d3cf
8 commits,
5 years ago
version 5
734eb826
7 commits,
5 years ago
version 4
90dc9a6b
6 commits,
5 years ago
version 3
62ddf1a3
4 commits,
5 years ago
version 2
8dbf5844
3 commits,
5 years ago
version 1
2467a283
1 commit,
5 years ago
29 files
+
1637
−
2019
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
29
Search (e.g. *.vue) (Ctrl+P)
bob/bio/base/algorithm/Algorithm.py
+
4
−
1
Options
@@ -91,7 +91,10 @@ class Algorithm (object):
):
warnings
.
warn
(
"
bob.bio.base.Algorithm is Deprecated
"
,
DeprecationWarning
)
warnings
.
simplefilter
(
'
default
'
)
warnings
.
warn
(
"
`bob.bio.base.algorithm.Algorithm` will be deprecated in 01/01/2021.
"
\
"
Please, implement your biometric algorithm using `bob.pipelines` (https://gitlab.idiap.ch/bob/bob.pipelines).
"
,
DeprecationWarning
)
self
.
performs_projection
=
performs_projection
Loading