You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "Z:\Python_Projects\test5.py", line 94, in <module>
inc.fit(X_train, y_train)
File "C:\Users\chalu\AppData\Roaming\Python\Python310\site-packages\dask_ml\wrappers.py", line 579, in fit
self._fit_for_estimator(estimator, X, y, **fit_kwargs)
File "C:\Users\chalu\AppData\Roaming\Python\Python310\site-packages\dask_ml\wrappers.py", line 561, in _fit_for_estimator
result = estimator.partial_fit(X=X, y=y, **fit_kwargs)
AttributeError: 'TPOTRegressor' object has no attribute 'partial_fit'
...because the TPOT objects don't have an incremental fit function.
I've opened an issue here re: attempting to train a TPOT regressor on a "larger than memory" dataset using Dask as I don't know if TPOT allows for larger than memory datasets, but this would be an awesome feature to have some day soon.
Thanks!
The text was updated successfully, but these errors were encountered:
All of the examples I've seen either:
Incremental
to train on a dataset that doesn't fit in memory (shown here)...but not how to use TPOT AND a larger than memory dataset.
My attempt at this looked like this:
...but this of course throws the error:
...because the TPOT objects don't have an incremental fit function.
I've opened an issue here re: attempting to train a TPOT regressor on a "larger than memory" dataset using Dask as I don't know if TPOT allows for larger than memory datasets, but this would be an awesome feature to have some day soon.
Thanks!
The text was updated successfully, but these errors were encountered: