I found that using the parameter disp=False
worked for me on a Microsoft Fabric notebook
model.fit(disp=False)
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have an unpredictable error.
com.fasterxml.jackson.databind.exc.MismatchedInputException: No content to map due to end-of-input at [Source: (String)""; line: 1, column: 0]
I would like to train a time series model using SARIMAX with four exogenous variables.
When I use model.fit()
, this error appears.
model=sm.tsa.statespace.SARIMAX(train['PUISSANCE'],order=(5,1,5),exog=train[['JOUR_SEMAINE', 'Jour_F', 'HEURE_CREUSE', 'HEURE_POINTE']])
results = model.fit()
results.summary()
Please let me know what might be wrong.
I found that using the parameter disp=False
worked for me on a Microsoft Fabric notebook
model.fit(disp=False)
On what version of Spark 3.3 are you facing the issue?
Just run the below command, and share the output
print(sc.version)
I can't reproduce the issue on 3.3.1.5.2-117504963
If you are getting the below exception, please rerun the cell until it succeedes.
com.fasterxml.jackson.databind.exc.MismatchedInputException: No content to map due to end-of-input at [Source: (String)""; line: 1, column: 0]