Skip to content

Commit

Permalink
Merge pull request #30 from kdgutier/fix/deps
Browse files Browse the repository at this point in the history
Fix/deps
  • Loading branch information
kdgutier committed May 14, 2021
2 parents cc9311c + 0bb2a03 commit 37ad9e1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
Pytorch implementation of the ES-RNN algorithm proposed by Smyl, winning submission of the M4 Forecasting Competition. The class wraps fit and predict methods to facilitate interaction with Machine Learning pipelines along with evaluation and data wrangling utility. Developed by [Autonlab](https://www.autonlab.org/)’s members at Carnegie Mellon University.

## Installation Prerequisites
* numpy==1.16.1
* pandas==0.25.2
* numpy>=1.16.1
* pandas>=0.25.2
* pytorch>=1.3.1

## Installation
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
numpy==1.16.1
pandas==0.25.2
numpy>=1.16.1
pandas>=0.25.2
torch>=1.3.1
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="ESRNN",
version="0.1.2",
version="0.1.3",
author="Kin Gutierrez, Cristian Challu, Federico Garza",
author_email="kdgutier@cs.cmu.edu, cchallu@andrew.cmu.edu, fede.garza.ramirez@gmail.com",
description="Pytorch implementation of the ESRNN",
Expand All @@ -20,8 +20,8 @@
],
python_requires='>=3.6',
install_requires =[
"numpy==1.16.1",
"pandas==0.25.2",
"numpy>=1.16.1",
"pandas>=0.25.2",
"torch>=1.3.1"
],
entry_points='''
Expand Down

0 comments on commit 37ad9e1

Please sign in to comment.