Known Issues
A list of known problem and how to solve them.
Terminated Run never finishes
SCIPY_ARRAY_API before importing sklearn or scipy
SCIPY_ARRAY_API before importing sklearn or scipy# @crunch/keep:on
import os
os.environ['SCIPY_ARRAY_API'] = '1'NaN in the Cloud, but none locally
NaN in the Cloud, but none locally# will use a range index, from 0 to len(X_test)
final_ensemble = pd.Series(
[0] * len(X_test),
dtype='float'
)
# pandas objects do not share the same index, it will likely result in only nans
final_ensemble += (X_test.loc[:, 'some_colomn'] * 2)Use the same index
Reset the index
Other
Last updated
Was this helpful?