-
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into (feat)customized_loss_and_val_func
# Conflicts: # pypots/classification/base.py # pypots/classification/grud/core.py # pypots/classification/raindrop/core.py # pypots/clustering/base.py # pypots/clustering/crli/model.py # pypots/clustering/vader/core.py # pypots/clustering/vader/model.py # pypots/forecasting/base.py # pypots/forecasting/csdi/core.py # pypots/forecasting/csdi/model.py # pypots/forecasting/template/model.py # pypots/imputation/base.py # pypots/imputation/csdi/core.py # pypots/imputation/csdi/model.py # pypots/imputation/gpvae/model.py # pypots/imputation/nonstationary_transformer/core.py # pypots/imputation/saits/core.py # pypots/imputation/saits/model.py # pypots/imputation/template/model.py # pypots/imputation/usgan/core.py # pypots/nn/modules/csdi/backbone.py
- Loading branch information
Showing
284 changed files
with
15,342 additions
and
3,328 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
blank_issues_enabled: true | ||
version: 2.1 | ||
contact_links: | ||
- name: PyPOTS Community on Slack | ||
- name: 🤗 PyPOTS Community on Slack | ||
url: https://join.slack.com/t/pypots-org/shared_invite/zt-1gq6ufwsi-p0OZdW~e9UW_IA4_f1OfxA | ||
about: General usage questions, community discussions, and the development team are here. | ||
|
||
- name: 🇨🇳 PyPOTS微信社区 (Community on WeChat) | ||
url: https://mp.weixin.qq.com/s/CGkirx7ODkngk6tGGANksw | ||
about: 中文社区讨论群,欢迎加入! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,15 +31,11 @@ jobs: | |
with: | ||
python-version: '3.10' | ||
check-latest: true | ||
cache: pip | ||
cache-dependency-path: | | ||
setup.cfg | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install build wheel | ||
pip install -r requirements.txt | ||
pip install build | ||
- name: Fetch the test environment details | ||
run: | | ||
|
@@ -48,7 +44,7 @@ jobs: | |
- name: Build package | ||
run: | | ||
python -m build --no-isolation | ||
python -m build | ||
- name: Publish the new package to PyPI | ||
uses: pypa/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,26 @@ | ||
repos: | ||
# hooks for checking files | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.4.0 | ||
rev: v4.6.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-yaml | ||
|
||
# hooks for linting code | ||
- repo: https://github.com/psf/black | ||
rev: 22.10.0 | ||
rev: 24.8.0 | ||
hooks: | ||
- id: black | ||
args: [ | ||
--line-length=120, # refer to pyproject.toml | ||
] | ||
|
||
- repo: https://github.com/PyCQA/flake8 | ||
rev: 6.0.0 | ||
rev: 7.1.1 | ||
hooks: | ||
- id: flake8 | ||
args: [ | ||
--max-line-length=120, # refer to setup.cfg | ||
--extend-ignore=E203, # why ignore E203? Refer to https://github.com/PyCQA/pycodestyle/issues/373 | ||
--max-line-length=120, # refer to pyproject.toml | ||
--extend-ignore=E203,E231 | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.