File tree 3 files changed +20
-6
lines changed
3 files changed +20
-6
lines changed Original file line number Diff line number Diff line change 8
8
9
9
.. autoclass :: mcfa.mcfa.MCFA
10
10
:members:
11
- :private-members:
12
11
13
12
Original file line number Diff line number Diff line change 185
185
186
186
# Example configuration for intersphinx: refer to the Python standard library.
187
187
intersphinx_mapping = {'https://docs.python.org/' : None }
188
+
189
+ autodoc_mock_imports = ['numpy' , 'scipy' , 'sklearn' , 'tqdm' ]
Original file line number Diff line number Diff line change 2
2
Mixture of Common Factor Analysers
3
3
==================================
4
4
5
+ A mixture of common factor analysers (MCFA) is a method for modelling multi-dimensional data.
6
+ The model assumes that the data are generated by a set of mutually orthogonal latent factors
7
+ that are common to all data, but the scoring (or extent) of those factors is different for
8
+ each data point. It also assumes that the scoring in latent space can be modelled as a mixture
9
+ of multivariate Gaussian distributions. The latent space is assumed to be lower dimensional than the data.
10
+
11
+
12
+ Model parameters are estimated using the expectation-maximization algorithm, given some fixed number
13
+ of latent factors and components. If the number of latent factors and components is not known then
14
+ these are found through a grid search, where the minimum message length is adopted as the objective
15
+ function.
16
+
17
+
18
+ :ref: `getting-started ` Getting started guide.
19
+
20
+
5
21
.. toctree ::
6
22
:maxdepth: 2
7
23
:caption: Contents:
8
24
9
25
api
10
26
11
27
12
- Indices and tables
13
- ==================
14
28
15
- * :ref: `genindex `
16
- * :ref: `modindex `
17
- * :ref: `search `
29
+
30
+ :ref: `genindex ` | :ref: `modindex ` | :ref: `search `
You can’t perform that action at this time.
0 commit comments