Views
No views yet
1import pickle 2 3with open('model.pkl', 'rb') as f: 4 model = pickle.load(f) 5 6forecast = model.forecast(steps=28)