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 Mar 22, 2019
1 parent 300ce81 commit 84556b5
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 84556b5

Please sign in to comment.