Skip to content

Commit 0890d3c

Browse files
Merge pull request #5 from intsystems/main
upd
2 parents a2c31bc + 6769ddd commit 0890d3c

File tree

4 files changed

+16
-13
lines changed

4 files changed

+16
-13
lines changed

.github/workflows/docs.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@ name: Docs
22

33
on:
44
push:
5-
branches:
6-
- main
5+
branches: [ "main" ]
76
pull_request:
8-
branches:
9-
- main
10-
7+
branches: [ "main" ]
8+
119
jobs:
1210
build:
1311
runs-on: ubuntu-latest
@@ -29,6 +27,7 @@ jobs:
2927
run: |
3028
pip install -U sphinx
3129
pip install -U sphinx-rtd-theme
30+
ls ./
3231
3332
- name: Build Docs
3433
run: |

doc/source/conf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
'sphinx.ext.autosummary', 'sphinx.ext.mathjax',
4040
'sphinx_rtd_theme']
4141

42-
autodoc_mock_imports = ["numpy", "scipy", "sklearn", "torch"]
42+
autodoc_mock_imports = ["numpy", "scipy", "sklearn"]
4343

4444
# Add any paths that contain templates here, relative to this directory.
4545
templates_path = ['_templates']
@@ -54,9 +54,9 @@
5454
html_context = {
5555
"display_github": True, # Integrate GitHub
5656
"github_user": "Intelligent-Systems-Phystech", # Username
57-
"github_repo": "ProjectTemplate", # Repo name
58-
"github_version": "master", # Version
59-
"conf_py_path": "/doc/source/", # Path in the checkout to the docs root
57+
"github_repo": "implicit-reparametrization-trick", # Repo name
58+
"github_version": "main", # Version
59+
"conf_py_path": "./doc/source/", # Path in the checkout to the docs root
6060
}
6161

6262

doc/source/index.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,7 @@ Welcome to Mixture Lib!
2828

2929
Indices and tables
3030
==================
31+
32+
* :ref:`genindex`
33+
* :ref:`modindex`
34+
* :ref:`search`

planning.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,16 +148,16 @@ In this example, we demonstrate the use of a mixture of distributions using our
148148

149149
| Task | Deadline | Assignee |
150150
| ---- | ---- | ---- |
151-
| Construct a basic example of a Normal class with an rsample method that supports backpropagation. | 22.10 | Zabarianska |
151+
| Construct a basic example of a Normal class with an rsample method that supports backpropagation. | 22.10 | Babkin |
152152
| Test usability of the library in VAE on MNIST. | 22.10 | - |
153153
| Compare results with explicit reparametrization trick. | 22.10 | - |
154154
| Prepare a draft of documentation. | 28.10 | Nikitina |
155-
| Prepare a draft of blogpost. | 28.10 | Kreinin |
155+
| Prepare a draft of blogpost. | 28.10 | Zabarianska |
156156
| Expand the class Normal and prepare distributions Dirichlet and Mixture. | 12.11 | Zabarianska, Kreinin, Nikitina |
157157
| Try to implement class Factorized. | 12.11 | Babkin |
158158
| Implement class Student's in case of failure. | 12.11 | Babkin |
159159
| Wrap project into a library. | 12.11 | Nikitina |
160160
| Write unit tests for different distribution, try to cover all cases. | 12.11 | Kreinin |
161-
| Prepare a demo. | 19.11 | Babkin |
161+
| Prepare a demo. | 19.11 | Kreinin |
162162
| Expand documentation for our code. | 19.11 | Nikitina |
163-
| Prepare a blog-post. | 19.11 | Kreinin |
163+
| Prepare a blog-post. | 19.11 | Zabarianska |

0 commit comments

Comments
 (0)