Skip to content

Commit 771dcc9

Browse files
CI errors
1 parent 68a2ccb commit 771dcc9

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/periodic_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ jobs:
178178
if: runner.os == 'Linux'
179179
uses: pierotofy/set-swap-space@v1.0
180180
with:
181-
swap-size-gb: 8
181+
swap-size-gb: 4
182182

183183
- name: Use numba cache to set env variables but not restore cache
184184
uses: ./.github/actions/numba_cache

.github/workflows/pr_pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
if: runner.os == 'Linux'
7777
uses: pierotofy/set-swap-space@v1.0
7878
with:
79-
swap-size-gb: 8
79+
swap-size-gb: 4
8080

8181
- if: ${{ github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'no numba cache') }}
8282
name: Restore numba cache

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
if: runner.os == 'Linux'
7070
uses: pierotofy/set-swap-space@v1.0
7171
with:
72-
swap-size-gb: 8
72+
swap-size-gb: 4
7373

7474
- uses: actions/download-artifact@v4
7575
with:

aeon/anomaly_detection/series/distance_based/_rockad.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ class ROCKAD(BaseSeriesAnomalyDetector):
8282
>>> X_test[15:20] -= 5
8383
>>> detector = ROCKAD(window_size=15,n_estimators=10,n_kernels=10,n_neighbors=3)
8484
>>> detector.fit(X_train)
85+
ROCKAD(...)
8586
>>> detector.predict(X_test)
8687
array([0. 0.00554713 0.06990941 0.2288106 0.32382585 0.43652154
8788
0.43652154 0.43652154 0.43652154 0.43652154 0.43652154 0.43652154

0 commit comments

Comments
 (0)