Skip to content

Commit

Permalink
Merge pull request #84 from Quantmetry/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
JulienRoussel77 authored Oct 12, 2023
2 parents 37c81ea + 545ba33 commit 5ee0f34
Show file tree
Hide file tree
Showing 92 changed files with 449,101 additions and 2,522 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,7 @@ jobs:
run: |
mypy qolmat
echo you should uncomment mypy qolmat and delete this line
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ __pycache__/
# documentation specific
docs/_build/
docs/generated/
docs/examples/tutorials/

# Distribution / packaging

Expand Down
2 changes: 2 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,5 @@ repos:
rev: v1.1.1
hooks:
- id: mypy
args: [--ignore-missing-imports]
additional_dependencies: [types-requests]
16 changes: 7 additions & 9 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,20 @@
Credits
=======

Development Lead
Development Team
----------------

* Julien Roussel <[email protected]>

Maintainers
------------

* Mikail Duran <[email protected]>
* Anh Khoa Ngo Ho <[email protected]>
* Charles-Henri Prat <[email protected]>
* Guillaume Saës <[email protected]>

Contributors
------------
Past Contributors
-----------------

* Hong-Lan Botterman
* Nicolas Brunel
* Firas Dakhli
* Mikaïl Duran
* Rima Hajou
* Vianey Taquet
* Thomas Morzadec
13 changes: 13 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@
History
=======

0.1.0 (2023-10-11)
-------------------

* VAR(p) EM sampler implemented, founding on a VAR(p) modelization such as the one described in `Lütkepohl (2005) New Introduction to Multiple Time Series Analysis`
* EM and RPCA matrices transposed in the low-level impelmentation, however the API remains unchanged
* Sparse matrices introduced in the RPCA implementation so as to speed up the execution
* Implementation of SoftImpute, which provides a fast but less robust alterantive to RPCA
* Implementation of TabDDPM and TsDDPM, which are diffusion-based models for tabular data and time-series data, based on Denoising Diffusion Probabilistic Models. Their implementations follow the work of Tashiro et al., (2021) and Kotelnikov et al., (2023).
* ImputerDiffusion is an imputer-wrapper of these two models TabDDPM and TsDDPM.
* Docstrings and tests improved for the EM sampler
* Fix ImputerPytorch
* Update Benchmark Deep Learning

0.0.15 (2023-08-03)
-------------------

Expand Down
Loading

0 comments on commit 5ee0f34

Please sign in to comment.