-
Notifications
You must be signed in to change notification settings - Fork 143
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
Added the new Datasets module. #156
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
484710f
Added a new module.
dmfolgado ea97fe7
Initial updated to the documentation.
dmfolgado 8f4b29e
Add feature sets image.
dmfolgado d193962
Fix bug on variable type.
dmfolgado 14f4a35
Improve documentation.
dmfolgado 4f5be0b
Add missing documentation artwork.
dmfolgado 9fc4740
Update the index page in the documentation.
dmfolgado c0580db
Add initial test workflow.
dmfolgado e45c9f7
Add separate requirements-test.txt to the workflow.
dmfolgado ff5a5c7
Resolve conflicts before merge.
dmfolgado c5e4d77
Merge testing workflow.
dmfolgado fd15fd5
Add the parser for the UCI HAR dataset.
dmfolgado 2ecaa87
Fix requirements-test.
dmfolgado 0d01ec0
Fix missing requirement.
dmfolgado 71b05c3
Fix typing bug.
dmfolgado 4bb44a2
Fix typing bug.
dmfolgado 6cb1642
Fix bug on testing workflow.
dmfolgado 7286a6a
Workflow focus only on data loaders.
dmfolgado 3521207
Update the cache root dir for xplatform.
dmfolgado 2ba966f
Adding sleep to fix problem on Windows workflow.
dmfolgado b1c86b2
Adding sleep to fix problem on Windows workflow.
dmfolgado 7012700
Adding sleep to fix problem on Windows workflow.
dmfolgado a25e02e
Minor changes
mbarandas 1af30ae
Code formatting
mbarandas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: "Tests" | ||
|
||
on: | ||
push: | ||
pull_request: | ||
types: [ opened, synchronize, reopened ] | ||
|
||
jobs: | ||
test: | ||
name: Run template tests | ||
strategy: | ||
max-parallel: 4 | ||
fail-fast: false | ||
matrix: | ||
python-version: [ '3.8', '3.9' ] | ||
platform: [ 'ubuntu-20.04', 'macos-latest', 'windows-latest' ] | ||
runs-on: ${{ matrix.platform }} | ||
timeout-minutes: 30 | ||
|
||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
- name: Extract branch name | ||
run: echo running on branch ${GITHUB_REF##*/} | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -VV | ||
python -m pip install --upgrade pip setuptools | ||
pip install -r requirements/requirements.txt | ||
pip install -r requirements/requirements-test.txt | ||
python -m pip install . | ||
- name: Check numpy and scipy flags | ||
run: | | ||
python -c "import numpy as np; np.show_config()" | ||
python -c "import scipy as sp; sp.show_config()" | ||
# - name: Test the input/output | ||
# run: | | ||
# python tests/test_calc_features.py | ||
- name: Test the data loaders | ||
run: | | ||
$retry_count = 3 | ||
while ($retry_count -gt 0) { | ||
python tests/test_dataset_loaders.py | ||
if ($LASTEXITCODE -eq 0) { | ||
break | ||
} | ||
$retry_count-- | ||
Start-Sleep -Seconds 5 | ||
} |
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 |
---|---|---|
|
@@ -91,6 +91,7 @@ celerybeat-schedule | |
# Environments | ||
.env | ||
.venv | ||
.venv-docs | ||
env/ | ||
venv/ | ||
ENV/ | ||
|
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
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 |
---|---|---|
|
@@ -10,3 +10,4 @@ Module Reference | |
|
||
modules/tsfel.feature_extraction | ||
modules/tsfel.utils | ||
modules/tsfel.datasets |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
datasets | ||
======== | ||
|
||
.. automodule:: tsfel.datasets | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
_single_problem_loaders | ||
----------------------- | ||
|
||
.. automodule:: tsfel.datasets._single_problem_loaders | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it correct that the version bumped from 0.1.6 to 0.1.8, and not 0.1.7?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it's correct. Version should be bumped to 0.1.8 as the version number on the stable documentation was not correct.