Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.bio.spear
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.spear
Merge requests
!55
Support for the Nist-SRE dataset
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Support for the Nist-SRE dataset
add-nist-sre04to16
into
master
Overview
4
Commits
15
Pipelines
18
Changes
20
Merged
Yannick DAYER
requested to merge
add-nist-sre04to16
into
master
3 years ago
Overview
2
Commits
15
Pipelines
18
Changes
20
Expand
Added the NIST-SRE04to16 dataset to known databases.
Added support for .sph files.
Edited
2 years ago
by
Yannick DAYER
0
0
Merge request reports
Compare
master
version 18
55a1c6f8
2 years ago
version 17
4949309a
2 years ago
version 16
0b329888
2 years ago
version 15
3ce45044
2 years ago
version 14
fe727637
2 years ago
version 13
95a8c35f
2 years ago
version 12
51409b51
3 years ago
version 11
f16c2e7b
3 years ago
version 10
80974ac4
3 years ago
version 9
446428c4
3 years ago
version 8
c34811d4
3 years ago
version 7
9ac8249f
3 years ago
version 6
51e49e39
3 years ago
version 5
4312bb6b
3 years ago
version 4
4312bb6b
3 years ago
version 3
d54d02e7
3 years ago
version 2
8df89bd2
3 years ago
version 1
cd64d497
3 years ago
master (base)
and
latest version
latest version
3c589c90
15 commits,
2 years ago
version 18
55a1c6f8
14 commits,
2 years ago
version 17
4949309a
13 commits,
2 years ago
version 16
0b329888
12 commits,
2 years ago
version 15
3ce45044
11 commits,
2 years ago
version 14
fe727637
11 commits,
2 years ago
version 13
95a8c35f
12 commits,
2 years ago
version 12
51409b51
11 commits,
3 years ago
version 11
f16c2e7b
9 commits,
3 years ago
version 10
80974ac4
8 commits,
3 years ago
version 9
446428c4
6 commits,
3 years ago
version 8
c34811d4
6 commits,
3 years ago
version 7
9ac8249f
5 commits,
3 years ago
version 6
51e49e39
8 commits,
3 years ago
version 5
4312bb6b
3 commits,
3 years ago
version 4
4312bb6b
4 commits,
3 years ago
version 3
d54d02e7
2 commits,
3 years ago
version 2
8df89bd2
2 commits,
3 years ago
version 1
cd64d497
2 commits,
3 years ago
20 files
+
433
−
131
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
20
Search (e.g. *.vue) (Ctrl+P)
bob/bio/spear/config/database/nist_sre04to16.py
0 → 100644
+
32
−
0
Options
#!/usr/bin/env python
# @author: Yannick Dayer <yannick.dayer@idiap.ch>
# @date: Tue 12 Apr 2022 09:36:40 UTC+02
"""
Default configuration file for the NIST-SRE database.
Use this file (defined as ``nist-sre`` in ``entry-points``) as parameter to the
``bob bio pipeline`` commands::
$ bob bio pipeline simple -d nist-sre [...]
Each of those three protocols have the same dev and eval groups. The differences are in
**the training set**:
- core: Selected set of files from the NIST-SRE database with labels.
- core-aug: Augmented data with reverberation or background noise (music, noise,
speech/babble).
- unlabeled: Different data that were not labeled.
To get the augmented data, please use the correct pipeline configuration. # TODO specify which one
"""
from
bob.bio.spear.database
import
SpearBioDatabase
if
"
protocol
"
not
in
locals
():
protocol
=
"
core
"
database
=
SpearBioDatabase
(
"
nist_sre04to16
"
,
protocol
=
protocol
,
data_ext
=
"
.sph
"
,
force_sample_rate
=
16000
,
)
Loading