Skip to content

kailingding/AutoTSF

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AutoTSF

Automated time-series forecast pipeline with state-of-art machine learning and deep learning algorithm. 🚀🚀🚀

version 0.1.0

Installation

Use the package manager pip to install AutoTSF.

$ pip install autotsf

Getting Started

from autotsf import AutoTSF                         # Import

import pandas as pd
data = pd.read_csv('/Users/kailing/Desktop/sample_data_1.csv', parse_dates=['datetime'])  # for testing

auto_tsf = AutoTSF()                                # Initialization
auto_tsf.train(data)                                # automated feature engineering and model training

pred_df = auto_tsf.forecast(num_step_forecast=7)    # one week forecast

Authors

  • Kailing Ding - Github
  • Yuxuan Fan - Github
  • Jerry Chan
  • Shen Hu
  • Jeffrey Chen

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE file for details

About

Automated time-series forecasting with state-of-art machine learning and deep learning algorithms

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages