maxim5 / time-series-machine-learning

Machine learning models for time series analysis
Apache License 2.0
370 stars 103 forks source link

ConvModel Fix #9

Open BennyTheDev opened 5 years ago

BennyTheDev commented 5 years ago

Hi,

the ConvModel in cnn_model.py has an error.

Quick fix:

Replace the line

super().init(**params)

with

TensorflowModel.init(self, **params)

And it will work again.

Sorry, don't have the time right now to open a pull request and thanks again for this great project, I think it is an awesome boilerplate.