Skip to content

Instantly share code, notes, and snippets.

@A-safarji
Created December 30, 2021 07:26
Show Gist options
  • Select an option

  • Save A-safarji/ad136d3422c1bcaf2b4d0010ab0291d0 to your computer and use it in GitHub Desktop.

Select an option

Save A-safarji/ad136d3422c1bcaf2b4d0010ab0291d0 to your computer and use it in GitHub Desktop.
NeuralProphet Forcasting
# model and fit D= clander days freq
model = NeuralProphet()
metrics = model.fit(apple_features,
freq='D', epochs=1000)
#predict
forecast = model.predict(apple_features)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment