├── .envrc ├── .flake8 ├── .gitattributes ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── AUTHORS.rst ├── CHANGELOG.rst ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── __init__.py ├── docs ├── Makefile ├── _templates │ └── module_functions_template.rst ├── authors.rst ├── changelog.rst ├── conf.py ├── descriptions │ ├── faq.rst │ ├── feature_list.rst │ ├── get_started.rst │ ├── modules.rst │ ├── modules │ │ ├── tsfel.datasets.rst │ │ ├── tsfel.feature_extraction.rst │ │ └── tsfel.utils.rst │ └── personal.rst ├── imgs │ ├── fhp_logo.png │ ├── tsfel_feature_sets.png │ ├── tsfel_feature_sets_squared.png │ ├── tsfel_logo.png │ ├── tsfel_pipeline.png │ └── tsfel_visual_guide.png ├── index.rst └── license.rst ├── notebooks ├── TSFEL_HAR_Example.ipynb ├── TSFEL_SMARTWATCH_HAR_Example.ipynb └── TSFEL_predicting_NormalVsPathologicalknee.ipynb ├── pyproject.toml ├── requirements ├── requirements-dev.txt ├── requirements-docs.txt ├── requirements-test.txt └── requirements.txt ├── setup.py ├── tests ├── __init__.py ├── benchmark.py ├── complexity_measures_intuition.py ├── datasets │ ├── __init__.py │ └── empirical1000_dataset.py ├── performance_tests_acf.py ├── test_calc_features.py ├── test_dataset_loaders.py ├── test_features.py ├── test_features_settings.py ├── test_signal_processing.py └── tests_tools │ ├── __init__.py │ ├── test_data │ └── complexity_datasets.py │ ├── test_dataset │ └── walking │ │ ├── acquisition_1 │ │ ├── Accelerometer.txt │ │ └── Gyroscope.txt │ │ └── acquisition_2 │ │ ├── Accelerometer.txt │ │ └── Gyroscope.txt │ ├── test_features.json │ └── test_personal_features.py └── tsfel ├── __init__.py ├── constants.py ├── datasets ├── __init__.py └── _single_problem_loaders.py ├── feature_extraction ├── __init__.py ├── calc_features.py ├── features.json ├── features.py ├── features_settings.py └── features_utils.py └── utils ├── __init__.py ├── add_personal_features.py ├── calculate_complexity.py ├── progress_bar.py └── signal_processing.py /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/.envrc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/__init__.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_templates/module_functions_template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/docs/_templates/module_functions_template.rst -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. _authors: 2 | .. include:: ../AUTHORS.rst 3 | -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. _changelog: 2 | .. include:: ../CHANGELOG.rst 3 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/descriptions/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/docs/descriptions/faq.rst -------------------------------------------------------------------------------- /docs/descriptions/feature_list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/docs/descriptions/feature_list.rst -------------------------------------------------------------------------------- /docs/descriptions/get_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/docs/descriptions/get_started.rst -------------------------------------------------------------------------------- /docs/descriptions/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/docs/descriptions/modules.rst -------------------------------------------------------------------------------- /docs/descriptions/modules/tsfel.datasets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/docs/descriptions/modules/tsfel.datasets.rst -------------------------------------------------------------------------------- /docs/descriptions/modules/tsfel.feature_extraction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/docs/descriptions/modules/tsfel.feature_extraction.rst -------------------------------------------------------------------------------- /docs/descriptions/modules/tsfel.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/docs/descriptions/modules/tsfel.utils.rst -------------------------------------------------------------------------------- /docs/descriptions/personal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/docs/descriptions/personal.rst -------------------------------------------------------------------------------- /docs/imgs/fhp_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/docs/imgs/fhp_logo.png -------------------------------------------------------------------------------- /docs/imgs/tsfel_feature_sets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/docs/imgs/tsfel_feature_sets.png -------------------------------------------------------------------------------- /docs/imgs/tsfel_feature_sets_squared.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/docs/imgs/tsfel_feature_sets_squared.png -------------------------------------------------------------------------------- /docs/imgs/tsfel_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/docs/imgs/tsfel_logo.png -------------------------------------------------------------------------------- /docs/imgs/tsfel_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/docs/imgs/tsfel_pipeline.png -------------------------------------------------------------------------------- /docs/imgs/tsfel_visual_guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/docs/imgs/tsfel_visual_guide.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/docs/license.rst -------------------------------------------------------------------------------- /notebooks/TSFEL_HAR_Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/notebooks/TSFEL_HAR_Example.ipynb -------------------------------------------------------------------------------- /notebooks/TSFEL_SMARTWATCH_HAR_Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/notebooks/TSFEL_SMARTWATCH_HAR_Example.ipynb -------------------------------------------------------------------------------- /notebooks/TSFEL_predicting_NormalVsPathologicalknee.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/notebooks/TSFEL_predicting_NormalVsPathologicalknee.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/requirements/requirements-dev.txt -------------------------------------------------------------------------------- /requirements/requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/requirements/requirements-docs.txt -------------------------------------------------------------------------------- /requirements/requirements-test.txt: -------------------------------------------------------------------------------- 1 | colorednoise==2.2.0 2 | -------------------------------------------------------------------------------- /requirements/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/requirements/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tests/benchmark.py -------------------------------------------------------------------------------- /tests/complexity_measures_intuition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tests/complexity_measures_intuition.py -------------------------------------------------------------------------------- /tests/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tests/datasets/__init__.py -------------------------------------------------------------------------------- /tests/datasets/empirical1000_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tests/datasets/empirical1000_dataset.py -------------------------------------------------------------------------------- /tests/performance_tests_acf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tests/performance_tests_acf.py -------------------------------------------------------------------------------- /tests/test_calc_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tests/test_calc_features.py -------------------------------------------------------------------------------- /tests/test_dataset_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tests/test_dataset_loaders.py -------------------------------------------------------------------------------- /tests/test_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tests/test_features.py -------------------------------------------------------------------------------- /tests/test_features_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tests/test_features_settings.py -------------------------------------------------------------------------------- /tests/test_signal_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tests/test_signal_processing.py -------------------------------------------------------------------------------- /tests/tests_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests_tools/test_data/complexity_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tests/tests_tools/test_data/complexity_datasets.py -------------------------------------------------------------------------------- /tests/tests_tools/test_dataset/walking/acquisition_1/Accelerometer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tests/tests_tools/test_dataset/walking/acquisition_1/Accelerometer.txt -------------------------------------------------------------------------------- /tests/tests_tools/test_dataset/walking/acquisition_1/Gyroscope.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tests/tests_tools/test_dataset/walking/acquisition_1/Gyroscope.txt -------------------------------------------------------------------------------- /tests/tests_tools/test_dataset/walking/acquisition_2/Accelerometer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tests/tests_tools/test_dataset/walking/acquisition_2/Accelerometer.txt -------------------------------------------------------------------------------- /tests/tests_tools/test_dataset/walking/acquisition_2/Gyroscope.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tests/tests_tools/test_dataset/walking/acquisition_2/Gyroscope.txt -------------------------------------------------------------------------------- /tests/tests_tools/test_features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tests/tests_tools/test_features.json -------------------------------------------------------------------------------- /tests/tests_tools/test_personal_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tests/tests_tools/test_personal_features.py -------------------------------------------------------------------------------- /tsfel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tsfel/__init__.py -------------------------------------------------------------------------------- /tsfel/constants.py: -------------------------------------------------------------------------------- 1 | FEATURES_MIN_SIZE = 160 2 | -------------------------------------------------------------------------------- /tsfel/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tsfel/datasets/__init__.py -------------------------------------------------------------------------------- /tsfel/datasets/_single_problem_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tsfel/datasets/_single_problem_loaders.py -------------------------------------------------------------------------------- /tsfel/feature_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tsfel/feature_extraction/__init__.py -------------------------------------------------------------------------------- /tsfel/feature_extraction/calc_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tsfel/feature_extraction/calc_features.py -------------------------------------------------------------------------------- /tsfel/feature_extraction/features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tsfel/feature_extraction/features.json -------------------------------------------------------------------------------- /tsfel/feature_extraction/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tsfel/feature_extraction/features.py -------------------------------------------------------------------------------- /tsfel/feature_extraction/features_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tsfel/feature_extraction/features_settings.py -------------------------------------------------------------------------------- /tsfel/feature_extraction/features_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tsfel/feature_extraction/features_utils.py -------------------------------------------------------------------------------- /tsfel/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tsfel/utils/__init__.py -------------------------------------------------------------------------------- /tsfel/utils/add_personal_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tsfel/utils/add_personal_features.py -------------------------------------------------------------------------------- /tsfel/utils/calculate_complexity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tsfel/utils/calculate_complexity.py -------------------------------------------------------------------------------- /tsfel/utils/progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tsfel/utils/progress_bar.py -------------------------------------------------------------------------------- /tsfel/utils/signal_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferportugal/tsfel/HEAD/tsfel/utils/signal_processing.py --------------------------------------------------------------------------------