Skip to content

Commit 458aa77

Browse files
committed
doc build
1 parent 4b27d7f commit 458aa77

File tree

3 files changed

+20
-6
lines changed

3 files changed

+20
-6
lines changed

docs/api.rst

-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,5 @@ MCFA
88

99
.. autoclass:: mcfa.mcfa.MCFA
1010
:members:
11-
:private-members:
1211

1312

docs/conf.py

+2
Original file line numberDiff line numberDiff line change
@@ -185,3 +185,5 @@
185185

186186
# Example configuration for intersphinx: refer to the Python standard library.
187187
intersphinx_mapping = {'https://docs.python.org/': None}
188+
189+
autodoc_mock_imports = ['numpy', 'scipy', 'sklearn', 'tqdm']

docs/index.rst

+18-5
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,29 @@
22
Mixture of Common Factor Analysers
33
==================================
44

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+
521
.. toctree::
622
:maxdepth: 2
723
:caption: Contents:
824

925
api
1026

1127

12-
Indices and tables
13-
==================
1428

15-
* :ref:`genindex`
16-
* :ref:`modindex`
17-
* :ref:`search`
29+
30+
:ref:`genindex` | :ref:`modindex` | :ref:`search`

0 commit comments

Comments
 (0)