Skip to content

Commit

Permalink
Removed erroneous 2nd arima fit (#212)
Browse files Browse the repository at this point in the history
arima fits on construction, don't need to explicitly call 'fit'
  • Loading branch information
IanGrimstead authored and thanasions committed Mar 25, 2019
1 parent a20621a commit 8e86b57
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions scripts/algorithms/arima.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ def __init__(self, data_in, num_prediction_periods):
error_action='ignore', suppress_warnings=True, stepwise=True
)

#self.__stepwise_model.fit(data_in)

@property
def configuration(self):
return self.__stepwise_model.order
Expand Down

0 comments on commit 8e86b57

Please sign in to comment.