Python Forum
FBProphet() Timeout in Anaconda
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
FBProphet() Timeout in Anaconda
#1

Hi all,

I've successfully used fbprophet for a quick forecast on a test dataset I called "ret", which was in the following form with dates labeled 'ds' and values 'y':
288 2016-01-01 12.901537 400928
289 2016-02-01 12.932543 413554
290 2016-03-01 13.039184 460093
291 2016-04-01 13.019078 450935
292 2016-05-01 13.063507 471421

I used the following code:
[inline]model=Prophet()
model.fit(ret)
future_data = model.make_future_dataframe(periods=6, freq = 'm')[/inline]

Now I'm trying to do the exact same thing with daily currency exchange data, but Anaconda is stalling out. I'm using Jupyter Notebook, and notice that in the command prompt window the message "initial log joint probability" appears, after which a series of log probabilities are appearing, but nothing ever finishes and I keep having to close out my Jupyter Notebook session. The new data is in the following form, again with columns 'ds' and 'y':
11752 2017.12.11 1.17668
11753 2017.12.12 1.17387
11754 2017.12.13 1.18232
11755 2017.12.14 1.17751
11756 2017.12.15 1.17481

My non-working code is:
[inline]model=Prophet(daily_seasonality=True)
model.fit(df1)
future = model.make_future_dataframe(periods=30, freq='d')[/inline]

Any ideas are much appreciated!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  FTp timeout except korenron 2 3,580 Feb-01-2022, 06:51 AM
Last Post: korenron
  error in fbprophet sveto4ka 1 2,571 Oct-16-2019, 04:54 AM
Last Post: sveto4ka
  timeout value in subprocess jonesin1974 2 5,042 Dec-01-2017, 02:18 PM
Last Post: snippsat
  AsyncSSH and timeout Standard_user 1 5,492 Nov-03-2016, 06:05 PM
Last Post: micseydel

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020