Skip to content

Commit

Permalink
Merge pull request #314 from WenjieDu/dev
Browse files Browse the repository at this point in the history
Update the docs and release v0.3.2
  • Loading branch information
WenjieDu authored Mar 18, 2024
2 parents 0ebc4f0 + 6975b28 commit 03e618d
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testing_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
python-version: ["3.7", "3.10", "3.11"]
python-version: ["3.7", "3.11"]

steps:
- name: Check out the repo code
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/testing_daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,20 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
python-version: ["3.7", "3.10"]
python-version: ["3.7", "3.11"]

steps:
- name: Check out the repo code
uses: actions/checkout@v3

- name: Determine the PyTorch version
uses: haya14busa/action-cond@v1
id: determine_pytorch_ver
with:
cond: ${{ matrix.python-version == 3.7 }}
if_true: "1.13.1"
if_false: "2.1.0"

- name: Set up Conda
uses: conda-incubator/setup-miniconda@v2
with:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<a href="https://github.com/WenjieDu/PyPOTS/blob/main/LICENSE">
<img alt="BSD-3 license" src="https://img.shields.io/badge/License-BSD--3-E9BB41?logo=opensourceinitiative&logoColor=white">
</a>
<a href="/WenjieDu/PyPOTS/blob/main/README.md#-community">
<a href="/WenjieDu/PyPOTS#-community">
<img alt="Community" src="https://img.shields.io/badge/join_us-community!-C8A062">
</a>
<a href="https://github.com/WenjieDu/PyPOTS/graphs/contributors">
Expand All @@ -40,7 +40,7 @@
<a href="https://github.com/WenjieDu/PyPOTS/actions/workflows/testing_ci.yml">
<img alt="GitHub Testing" src="https://img.shields.io/github/actions/workflow/status/wenjiedu/pypots/testing_ci.yml?logo=circleci&color=C8D8E1&label=CI">
</a>
<a href="https://readthedocs.org/projects/pypots/builds">
<a href="https://docs.pypots.com">
<img alt="Docs building" src="https://img.shields.io/readthedocs/pypots?logo=readthedocs&label=Docs&logoColor=white&color=395260">
</a>
<a href="https://anaconda.org/conda-forge/pypots">
Expand Down Expand Up @@ -222,9 +222,9 @@ This functionality is implemented with the [Microsoft NNI](https://github.com/mi
> [!TIP]
> **[Updates in Feb 2024]** 😎 Our survey paper [Deep Learning for Multivariate Time Series Imputation: A Survey](https://arxiv.org/abs/2402.04059) has been released on arXiv.
The code is open source in the GitHub repo [Awesome_Imputation](https://github.com/WenjieDu/Awesome_Imputation).
We comprehensively review the literature of the state-of-the-art deep-learning imputation methods for time series,
We comprehensively review the literature of the state-of-the-art deep-learning imputation methods for time series,
provide a taxonomy for them, and discuss the challenges and future directions in this field.
>
>
> **[Updates in Jun 2023]** 🎉 A short version of the PyPOTS paper is accepted by the 9th SIGKDD international workshop on
Mining and Learning from Time Series ([MiLeTS'23](https://kdd-milets.github.io/milets2023/))).
**Additionally**, PyPOTS has been included as a [PyTorch Ecosystem](https://pytorch.org/ecosystem/) project.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Welcome to PyPOTS docs!

.. image:: https://img.shields.io/badge/join_us-community!-C8A062
:alt: Community
:target: #id17
:target: https://github.com/WenjieDu/PyPOTS#-community

.. image:: https://img.shields.io/github/contributors/wenjiedu/pypots?color=D8E699&label=Contributors&logo=GitHub
:alt: GitHub Contributors
Expand Down
9 changes: 9 additions & 0 deletions docs/pypots.imputation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@ pypots.imputation.transformer
:show-inheritance:
:inherited-members:

pypots.imputation.timesnet
------------------------------

.. automodule:: pypots.imputation.timesnet
:members:
:undoc-members:
:show-inheritance:
:inherited-members:

pypots.imputation.csdi
------------------------------

Expand Down
2 changes: 1 addition & 1 deletion pypots/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
__version__ = "0.3.1"
__version__ = "0.3.2"


from . import imputation, classification, clustering, forecasting, optim, data, utils
Expand Down

0 comments on commit 03e618d

Please sign in to comment.