All Projects → dmbee → Seglearn

dmbee / Seglearn

Licence: bsd-3-clause
Python module for machine learning time series:

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Seglearn

Mckinsey Smartcities Traffic Prediction
Adventure into using multi attention recurrent neural networks for time-series (city traffic) for the 2017-11-18 McKinsey IronMan (24h non-stop) prediction challenge
Stars: ✭ 49 (-88.74%)
Mutual labels:  data-science, time-series
Tscv
Time Series Cross-Validation -- an extension for scikit-learn
Stars: ✭ 145 (-66.67%)
Mutual labels:  data-science, time-series
Tsrepr
TSrepr: R package for time series representations
Stars: ✭ 75 (-82.76%)
Mutual labels:  data-science, time-series
Tsfresh
Automatic extraction of relevant features from time series:
Stars: ✭ 6,077 (+1297.01%)
Mutual labels:  data-science, time-series
Pycaret
An open-source, low-code machine learning library in Python
Stars: ✭ 4,594 (+956.09%)
Mutual labels:  data-science, time-series
H1st
The AI Application Platform We All Need. Human AND Machine Intelligence. Based on experience building AI solutions at Panasonic: robotics predictive maintenance, cold-chain energy optimization, Gigafactory battery mfg, avionics, automotive cybersecurity, and more.
Stars: ✭ 697 (+60.23%)
Mutual labels:  data-science, time-series
Scipy con 2019
Tutorial Sessions for SciPy Con 2019
Stars: ✭ 142 (-67.36%)
Mutual labels:  data-science, time-series
Matrixprofile
A Python 3 library making time series data mining tasks, utilizing matrix profile algorithms, accessible to everyone.
Stars: ✭ 141 (-67.59%)
Mutual labels:  data-science, time-series
Tsfel
An intuitive library to extract features from time series
Stars: ✭ 202 (-53.56%)
Mutual labels:  data-science, time-series
Collapse
Advanced and Fast Data Transformation in R
Stars: ✭ 184 (-57.7%)
Mutual labels:  data-science, time-series
Matrixprofile Ts
A Python library for detecting patterns and anomalies in massive datasets using the Matrix Profile
Stars: ✭ 621 (+42.76%)
Mutual labels:  data-science, time-series
Data Science
Collection of useful data science topics along with code and articles
Stars: ✭ 315 (-27.59%)
Mutual labels:  data-science, time-series
Elki
ELKI Data Mining Toolkit
Stars: ✭ 613 (+40.92%)
Mutual labels:  data-science, time-series
Mathematicavsr
Example projects, code, and documents for comparing Mathematica with R.
Stars: ✭ 41 (-90.57%)
Mutual labels:  data-science, time-series
Pyfts
An open source library for Fuzzy Time Series in Python
Stars: ✭ 154 (-64.6%)
Mutual labels:  data-science, time-series
Deltapy
DeltaPy - Tabular Data Augmentation (by @firmai)
Stars: ✭ 344 (-20.92%)
Mutual labels:  data-science, time-series
Sktime
A unified framework for machine learning with time series
Stars: ✭ 4,741 (+989.89%)
Mutual labels:  data-science, time-series
Machinejs
[UNMAINTAINED] Automated machine learning- just give it a data file! Check out the production-ready version of this project at ClimbsRocks/auto_ml
Stars: ✭ 412 (-5.29%)
Mutual labels:  data-science
Data Science Interviews
Data science interview questions and answers
Stars: ✭ 4,809 (+1005.52%)
Mutual labels:  data-science
Mlinterview
A curated awesome list of AI Startups in India & Machine Learning Interview Guide. Feel free to contribute!
Stars: ✭ 410 (-5.75%)
Mutual labels:  data-science

.. -- mode: rst --

.. _scikit-learn: http://scikit-learn.org/stable/

.. _scikit-learn-contrib: https://github.com/scikit-learn-contrib

|Travis|_ |Pypi|_ |PythonVersion|_ |CircleCI|_ |Coveralls|_ |Downloads|_

.. |Travis| image:: https://travis-ci.org/dmbee/seglearn.svg?branch=master .. _Travis: https://travis-ci.org/dmbee/seglearn

.. |Pypi| image:: https://badge.fury.io/py/seglearn.svg .. _Pypi: https://badge.fury.io/py/seglearn

.. |PythonVersion| image:: https://img.shields.io/pypi/pyversions/seglearn.svg .. _PythonVersion: https://img.shields.io/pypi/pyversions/seglearn.svg

.. |CircleCI| image:: https://circleci.com/gh/dmbee/seglearn.svg?style=shield&circle-token=:circle-token .. _CircleCI: https://circleci.com/gh/dmbee/seglearn/tree/master

.. |Coveralls| image:: https://coveralls.io/repos/github/dmbee/seglearn/badge.svg?branch=master&&service=github .. _Coveralls: https://coveralls.io/github/dmbee/seglearn?branch=master&service=github

.. |Downloads| image:: https://pepy.tech/badge/seglearn .. _Downloads: https://pepy.tech/project/seglearn

seglearn

Seglearn is a python package for machine learning time series or sequences. It provides an integrated pipeline for segmentation, feature extraction, feature processing, and final estimator. Seglearn provides a flexible approach to multivariate time series and related contextual (meta) data for classification, regression, and forecasting problems. Support and examples are provided for learning time series with classical machine learning and deep learning models. It is compatible with scikit-learn_.

Documentation

Installation documentation, API documentation, and examples can be found on the documentation_.

.. _documentation: https://dmbee.github.io/seglearn/

Dependencies


seglearn is tested to work under Python 3.5.
The dependency requirements are based on the last scikit-learn release:

* scipy(>=0.17.0)
* numpy(>=1.11.0)
* scikit-learn(>=0.21.3)

Additionally, to run the examples, you need:

* matplotlib(>=2.0.0)
* keras (>=2.1.4) for the neural network examples
* pandas

In order to run the test cases, you need:

* pytest

The neural network examples were tested on keras using the tensorflow-gpu backend, which is recommended.

Installation

seglearn-learn is currently available on the PyPi's repository and you can install it via pip::

pip install -U seglearn

or if you use python3::

pip3 install -U seglearn

If you prefer, you can clone it and run the setup.py file. Use the following commands to get a copy from GitHub and install all dependencies::

git clone https://github.com/dmbee/seglearn.git cd seglearn pip install .

Or install using pip and GitHub::

pip install -U git+https://github.com/dmbee/seglearn.git

Testing


After installation, you can use `pytest` to run the test suite from seglearn's root directory::

  pytest

Change Log
----------

Version history can be viewed in the `Change Log
<https://dmbee.github.io/seglearn/change_log.html>`_.

Development
-----------

The development of this scikit-learn-contrib is in line with the one
of the scikit-learn community. Therefore, you can refer to their
`Development Guide
<http://scikit-learn.org/stable/developers>`_.

Please submit new pull requests on the dev branch with unit tests and an example to
demonstrate any new functionality / api changes.

Citing seglearn

If you use seglearn in a scientific publication, we would appreciate citations to the following paper::

@article{arXiv:1803.08118, author = {David Burns, Cari Whyne}, title = {Seglearn: A Python Package for Learning Sequences and Time Series}, journal = {arXiv}, year = {2018}, url = {https://arxiv.org/abs/1803.08118} }

If you use the seglearn test data in a scientific publication, we would appreciate citations to the following paper::

@article{arXiv:1802.01489, author = {David Burns, Nathan Leung, Michael Hardisty, Cari Whyne, Patrick Henry, Stewart McLachlin}, title = {Shoulder Physiotherapy Exercise Recognition: Machine Learning the Inertial Signals from a Smartwatch}, journal = {arXiv}, year = {2018}, url = {https://arxiv.org/abs/1802.01489} }

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].