Skip to content

Commit 57baea7

Browse files
committed
make release-tag: Merge branch 'master' into stable
2 parents 373ed61 + 27a3605 commit 57baea7

37 files changed

+12871
-331
lines changed

.github/workflows/tests.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,21 @@ jobs:
124124
run: pip install invoke jupyter matplotlib .
125125
- name: invoke tutorials
126126
run: invoke tutorials
127+
128+
129+
pretrained:
130+
runs-on: ${{ matrix.os }}
131+
strategy:
132+
matrix:
133+
python-version: ['3.11']
134+
os: [ubuntu-latest, macos-latest, windows-latest]
135+
steps:
136+
- uses: actions/checkout@v1
137+
- name: Set up Python ${{ matrix.python-version }}
138+
uses: actions/setup-python@v2
139+
with:
140+
python-version: ${{ matrix.python-version }}
141+
- name: Install package and dependencies
142+
run: pip install invoke jupyter .[pretrained]
143+
- name: invoke pretrained
144+
run: invoke pretrained

HISTORY.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
History
22
=======
33

4+
## 0.7.0 – 2024-12-18
5+
6+
New ``units`` pipeline
7+
8+
### Issues resolved
9+
10+
* Keep python 3.11 support for pretrained models – [Issue #598](https://github.com/signals-dev/Orion/issues/598) by @sarahmish
11+
* Unpin ``scikit-learn`` and fix ``MinMaxScaler``[Issue #596](https://github.com/signals-dev/Orion/issues/596) by @sarahmish
12+
* Add hyperparameters to ``units`` pipelines – [Issue #595](https://github.com/signals-dev/Orion/issues/595) by @sarahmish
13+
* Make pretrained models optional to install – [Issue #590](https://github.com/signals-dev/Orion/issues/590) by @sarahmish
14+
* Update pandas dependency – [Issue #587](https://github.com/signals-dev/Orion/issues/587) by @sarahmish
15+
* UniTS pipeline – [Issue #581](https://github.com/signals-dev/Orion/issues/581) by @Linh-nk
16+
* Update Tutorials page – [Issue #576](https://github.com/signals-dev/Orion/issues/576) by @sarahmish
17+
18+
419
## 0.6.1 - 2024-10-04
520

621
### Issues resolved

Makefile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,14 @@ install-test: clean-build clean-pyc ## install the package and test dependencies
8181
install-develop: clean-build clean-pyc ## install the package in editable mode and dependencies for development
8282
pip install -e .[dev]
8383

84+
.PHONY: install-pretrained
85+
install-pretrained: clean-build clean-pyc ## install the package and pretrained pipelines
86+
pip install -e .[pretrained]
87+
88+
.PHONY: install-pretrained-develop
89+
install-pretrained-develop: clean-build clean-pyc ## install the package with pretrained in editable mode and dependencies for development
90+
pip install -e .[pretrained-dev]
91+
8492
MINIMUM := $(shell sed -n '/install_requires = \[/,/]/p' setup.py | grep -v -e '[][]' | sed 's/ *\(.*\),$?$$/\1/g' | tr '>' '=')
8593

8694
.PHONY: install-minimum
@@ -127,6 +135,10 @@ test-readme: ## run the readme snippets
127135
test-tutorials: ## run the tutorial notebooks
128136
invoke tutorials
129137

138+
.PHONY: test-pretrained-tutorials
139+
test-pretrained-tutorials: ## run the tutorial notebooks
140+
invoke pretrained
141+
130142
.PHONY: test
131143
test: test-unit test-readme test-tutorials ## test everything that needs test dependencies
132144

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,12 +130,14 @@ We run the benchmark on **12** datasets with their known grounth truth. We recor
130130
|---------------------------|--------------------|
131131
| AER | 11 |
132132
| TadGAN | 7 |
133-
| LSTM Dynamic Thresholding | 8 |
134-
| LSTM Autoencoder | 7 |
135-
| Dense Autoencoder | 7 |
133+
| LSTM Dynamic Thresholding | 9 |
134+
| LSTM Autoencoder | 6 |
135+
| Dense Autoencoder | 8 |
136136
| VAE | 6 |
137+
| AnomalyTransformer | 2 |
137138
| LNN | 7 |
138139
| Matrix Profile | 5 |
140+
| UniTS | 6 |
139141
| [GANF](https://arxiv.org/pdf/2202.07857.pdf) | 5 |
140142
| [Azure](https://azure.microsoft.com/en-us/products/cognitive-services/anomaly-detector/) | 0 |
141143

benchmark/leaderboard.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
|---------------------------|--------------------|
33
| AER | 11 |
44
| TadGAN | 7 |
5-
| LSTM Dynamic Thresholding | 8 |
6-
| LSTM Autoencoder | 5 |
7-
| Dense Autoencoder | 7 |
5+
| LSTM Dynamic Thresholding | 9 |
6+
| LSTM Autoencoder | 6 |
7+
| Dense Autoencoder | 8 |
88
| VAE | 6 |
9+
| AnomalyTransformer | 2 |
910
| LNN | 7 |
10-
| GANF | 5 |
1111
| Matrix Profile | 5 |
12-
| AnomalyTransformer | 2 |
12+
| UniTS | 6 |
13+
| GANF | 5 |
1314
| Azure | 0 |

benchmark/leaderboard.xlsx

117 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)