Skip to content

upd #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@ name: Docs

on:
push:
branches:
- main
branches: [ "main" ]
pull_request:
branches:
- main

branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -29,6 +27,7 @@ jobs:
run: |
pip install -U sphinx
pip install -U sphinx-rtd-theme
ls ./

- name: Build Docs
run: |
Expand Down
8 changes: 4 additions & 4 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
'sphinx.ext.autosummary', 'sphinx.ext.mathjax',
'sphinx_rtd_theme']

autodoc_mock_imports = ["numpy", "scipy", "sklearn", "torch"]
autodoc_mock_imports = ["numpy", "scipy", "sklearn"]

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


Expand Down
4 changes: 4 additions & 0 deletions doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,7 @@ Welcome to Mixture Lib!

Indices and tables
==================

* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
8 changes: 4 additions & 4 deletions planning.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,16 +148,16 @@ In this example, we demonstrate the use of a mixture of distributions using our

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