-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed support for distributed datasets in create_auto_config #2508
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for this change!
@@ -1,9 +1,13 @@ | |||
from abc import ABC, abstractmethod | |||
from typing import List, Tuple | |||
|
|||
import dask.dataframe as dd |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This dask import should be ok since users using Ludwig automl are expected to pip install ludwig[distributed]
. Is that right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, the automl library requires Ray and Dask to work.
Fixes #2499.
Related #2497.
Also changes exclusion logic to be less restrictive for index-looking fields.