- Notifications
You must be signed in to change notification settings - Fork83
A deep learning tool for time series classification and regression
License
NLeSC/mcfly
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
The goal of mcfly is to ease the use of deep learning technology for time series classification and regression. The advantage of deep learning is that it can handle raw data directly, without the need to compute signal features. Deep learning does not require expert domain knowledge about the data, and has been shown to be competitive with conventional machine learning techniques. As an example, you can apply mcfly on accelerometer data for activity classification, as shown inthe tutorial.
If you use mcfly in your research, please cite the following software paper:
D. van Kuppevelt, C. Meijer, F. Huber, A. van der Ploeg, S. Georgievska, V.T. van Hees.Mcfly: Automated deep learning on time series.SoftwareX,Volume 12,2020.doi: 10.1016/j.softx.2020.100548
Prerequisites:
- Python 3.10, 3.11
- pip
- Tensorflow 2, PyTorch or JAX
Installing all dependencies in separate conda environment:
conda env create -f environment.yml# activate this new environmentsource activate mcfly
To install the package, run one of the following commands in the project directory:
pip install mcfly[tensorflow]
pip install mcfly[torch]
pip install mcfly[jax]
Please note: If you are not using tensorflow, you have to set the environment variableKERAS_BACKEND
accordingly to your chosen backend.
For GPU support take a look at the latest version of the requirements section "most stable GPU environment" inside the Keras documentation or directly in theirGitHub repository.
We build a tool to visualize the configuration and performance of the models. The tool can be found onhttp://nlesc.github.io/mcfly/. To run the model visualization on your own computer, cd to thehtml
directory and start up a python web server:
python -m http.server 8888 &
Navigate tohttp://localhost:8888/
in your browser to open the visualization. For a more elaborate description of the visualization seeuser manual.
You are welcome to contribute to the code via pull requests. Please have a look at theNLeSC guide for guidelines about software development.
We use numpy-style docstrings for code documentation.
Source code and data of mcfly are licensed under the Apache License, version 2.0.
About
A deep learning tool for time series classification and regression
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors14
Uh oh!
There was an error while loading.Please reload this page.