Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.learn.em
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.learn.em
Commits
74bb931f
Commit
74bb931f
authored
10 years ago
by
Tiago de Freitas Pereira
Browse files
Options
Downloads
Patches
Plain Diff
More documentation
parent
413fd06e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bob/learn/em/plda_trainer.cpp
+3
-4
3 additions, 4 deletions
bob/learn/em/plda_trainer.cpp
doc/py_api.rst
+44
-0
44 additions, 0 deletions
doc/py_api.rst
with
47 additions
and
4 deletions
bob/learn/em/plda_trainer.cpp
+
3
−
4
View file @
74bb931f
...
...
@@ -261,7 +261,7 @@ static auto init_f_method = bob::extension::VariableDoc(
"init_f_method"
,
"str"
,
"The method used for the initialization of :math:`$F$`."
,
""
"
Possible values are: ('RANDOM_F', 'BETWEEN_SCATTER')
"
);
PyObject
*
PyBobLearnEMPLDATrainer_getFMethod
(
PyBobLearnEMPLDATrainerObject
*
self
,
void
*
)
{
BOB_TRY
...
...
@@ -287,7 +287,7 @@ static auto init_g_method = bob::extension::VariableDoc(
"init_g_method"
,
"str"
,
"The method used for the initialization of :math:`$G$`."
,
""
"
Possible values are: ('RANDOM_G', 'BETWEEN_SCATTER')
"
);
PyObject
*
PyBobLearnEMPLDATrainer_getGMethod
(
PyBobLearnEMPLDATrainerObject
*
self
,
void
*
)
{
BOB_TRY
...
...
@@ -307,13 +307,12 @@ int PyBobLearnEMPLDATrainer_setGMethod(PyBobLearnEMPLDATrainerObject* self, PyOb
BOB_CATCH_MEMBER
(
"init_g_method method could not be set"
,
0
)
}
/***** init_sigma_method *****/
static
auto
init_sigma_method
=
bob
::
extension
::
VariableDoc
(
"init_sigma_method"
,
"str"
,
"The method used for the initialization of :math:`$
\\
Sigma$`."
,
""
"
Possible values are: ('RANDOM_SIGMA', 'VARIANCE_G', 'CONSTANT', 'VARIANCE_DATA')
"
);
PyObject
*
PyBobLearnEMPLDATrainer_getSigmaMethod
(
PyBobLearnEMPLDATrainerObject
*
self
,
void
*
)
{
BOB_TRY
...
...
This diff is collapsed.
Click to expand it.
doc/py_api.rst
+
44
−
0
View file @
74bb931f
...
...
@@ -9,6 +9,50 @@
This section includes information for using the pure Python API of
``bob.learn.em``.
Classes
-------
.. autosummary::
Trainers
--------
bob.learn.em.KMeansTrainer
bob.learn.em.ML_GMMTrainer
bob.learn.em.MAP_GMMTrainer
bob.learn.em.ISVTrainer
bob.learn.em.JFATrainer
bob.learn.em.IVectorTrainer
bob.learn.em.PLDATrainer
Machines
--------
bob.learn.em.KMeansMachine
bob.learn.em.Gaussian
bob.learn.em.GMMStats
bob.learn.em.GMMMachine
bob.learn.em.ISVBase
bob.learn.em.ISVMachine
bob.learn.em.JFABase
bob.learn.em.JFAMachine
bob.learn.em.IVectorMachine
bob.learn.em.PLDABase
bob.learn.em.PLDAMachine
Functions
---------
.. autosummary::
bob.learn.em.linear_scoring
bob.learn.em.tnorm
bob.learn.em.train
bob.learn.em.train_jfa
bob.learn.em.znorm
bob.learn.em.ztnorm
bob.learn.em.ztnorm_same_value
Detailed Information
--------------------
.. automodule:: bob.learn.em
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