Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

♻️ refactor indexing + ✂️ decouple stride & window + ✨ support segment idxs #71

Merged
merged 51 commits into from Oct 11, 2022
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
0d0bd0a
:bug: fix vectorized support for single window
jvdd Jun 19, 2022
0a856c6
:recycle: refactor indexing
jvdd Jun 23, 2022
3b34033
Merge branch 'refactoring' into bound_bug
jvdd Jun 23, 2022
967f253
Merge pull request #68 from predict-idlab/bound_bug
jvdd Jun 23, 2022
23d1305
:bug: fix vectorized & normal sliding windows for edge cases
jvdd Jun 23, 2022
96ec9ae
:broom: cleanup vectorized code
jvdd Jun 23, 2022
a9da564
:pray: cleanup tests
jvdd Jul 5, 2022
e2549a6
:package: update catch22 & other dependencies
jvdd Jul 7, 2022
96fa87c
:robot: add python 3.10 to test matrix
jvdd Jul 7, 2022
195ef54
:lock: update dependencies
jvdd Jul 7, 2022
3bcfec0
:pen: update docs
jvdd Jul 7, 2022
b0627cf
:plane: load empatica data local if present
jvdd Jul 24, 2022
8e28f0b
:plane: decouple stride from feature descriptors
jvdd Jul 24, 2022
67728c7
:gear:
jvdd Jul 25, 2022
ea6b59e
:pencil: review
jonasvdd Aug 3, 2022
ecfb68d
:airplane: decouple stride + setpoint support
jvdd Aug 6, 2022
57f478a
Merge branch 'refactoring' into tsflex_v2
jvdd Aug 6, 2022
26e5840
Merge pull request #74 from predict-idlab/tsflex_v2
jvdd Aug 6, 2022
6f7e714
:bug: update logging + support sequence window / strides
jvdd Aug 6, 2022
2388b63
Merge branch 'tsflex_v2' of github.com:predict-idlab/tsflex into tsfl…
jvdd Aug 6, 2022
89ad170
Merge branch 'tsflex_v2' into refactoring
jvdd Aug 6, 2022
6803f1d
:see_no_evil: extend tests
jvdd Aug 7, 2022
cbfa196
:clown: more strided rolling tests + update strided rolling behavior
jvdd Aug 7, 2022
9dfd374
:beers: update reduce tests
jvdd Aug 7, 2022
cdd44f5
:mag: adding review
jonasvdd Aug 8, 2022
18516f8
:fire: extend setpoint tests
jvdd Aug 8, 2022
84cc89f
:robot: improve setpoints testing
jvdd Aug 9, 2022
7015a63
:broom:
jvdd Aug 9, 2022
0db5d1f
:recycle:
jvdd Aug 9, 2022
198b882
:tada: extend tests + cleanup code
jvdd Aug 9, 2022
ee3621c
:sound: code review
jonasvdd Aug 9, 2022
3b791e2
:mag: adding timesequence strided rolling implementation
jonasvdd Aug 13, 2022
dc2e0d6
:muscle: adding tests
jonasvdd Aug 15, 2022
90e6b5e
:construction: add start and end segment idxs
jvdd Aug 18, 2022
61971ea
:broom: make window optional in FeatureDescriptor
jvdd Aug 19, 2022
496b53f
:construction:
jvdd Aug 19, 2022
8a8f96c
:fire: log "manual" for window and/or stride when overriden by segmen…
jvdd Aug 19, 2022
819b992
:broom:
jvdd Aug 19, 2022
8505ec4
:owl: update reduce method + tests
jvdd Aug 19, 2022
5c447d2
:cold_sweat: change duration check bc window tests fail suddenly
jvdd Aug 20, 2022
651c934
:broom: trim segment indices in the FeatureCollection
jvdd Aug 20, 2022
cf3bb11
:recycle:
jvdd Aug 20, 2022
c86a5b3
:walking:
jvdd Aug 20, 2022
744c8d9
:mag: update type-hints & improve docs
jonasvdd Oct 4, 2022
305e658
:sparkles: adding construct_output_index
jonasvdd Oct 4, 2022
169e15a
:muscle: code-review
jonasvdd Oct 4, 2022
6164163
:lock: updating black
jonasvdd Oct 4, 2022
0ed0a59
:pray: update poetry action
jonasvdd Oct 4, 2022
9da85b6
:sparkles: omit segment idx trimming
jonasvdd Oct 8, 2022
cc2c6e8
:recycle: update code based on review
jvdd Oct 10, 2022
e684a09
:pray: fix windows build?
jvdd Oct 11, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
os: ['windows-latest', 'macOS-latest', 'ubuntu-latest']
python-version: [3.7, 3.8, 3.9]
python-version: ['3.7', '3.8', '3.9', '3.10']

steps:
- uses: actions/checkout@v2
Expand Down