[Data] Skip schema call in to_tf if tf.TypeSpec is provided#42917
Merged
c21 merged 5 commits intoray-project:masterfrom Feb 8, 2024
Merged
[Data] Skip schema call in to_tf if tf.TypeSpec is provided#42917c21 merged 5 commits intoray-project:masterfrom
schema call in to_tf if tf.TypeSpec is provided#42917c21 merged 5 commits intoray-project:masterfrom
Conversation
tf.TypeSpec of columns in to_tfschema call in to_tf if tf.TypeSpec is provided
Signed-off-by: Cheng Su <scnju13@gmail.com>
Signed-off-by: Cheng Su <scnju13@gmail.com>
Signed-off-by: Cheng Su <scnju13@gmail.com>
bveeramani
approved these changes
Feb 8, 2024
scottjlee
approved these changes
Feb 8, 2024
raulchen
approved these changes
Feb 8, 2024
c21
added a commit
to c21/ray
that referenced
this pull request
Feb 9, 2024
…y-project#42917) This PR is to skip `Dataset.schema()` call from `Dataset.to_tf()`. `Dataset.schema()` relies on `limit` to early stop execution, and sometimes the stop is not triggered timely so a lot of tasks get executed. This introduced problem to cause memory spilling. In addition, sometimes, it returns `None` (does not work with limit push down), and it breaks followed logic in `to_tf`, which all relies on `schema()` to work. In this PR: * Introduce two optional parameters in `to_tf`: `feature_type_spec` and `label_type_spec` (by default they are `None`). So user can set `tf.TypeSpec` explicitly and the `Dataset.schema()` call will be skipped. Signed-off-by: Cheng Su <scnju13@gmail.com>
8 tasks
zhe-thoughts
pushed a commit
that referenced
this pull request
Feb 9, 2024
…2917) (#43073) This PR is to skip `Dataset.schema()` call from `Dataset.to_tf()`. `Dataset.schema()` relies on `limit` to early stop execution, and sometimes the stop is not triggered timely so a lot of tasks get executed. This introduced problem to cause memory spilling. In addition, sometimes, it returns `None` (does not work with limit push down), and it breaks followed logic in `to_tf`, which all relies on `schema()` to work. In this PR: * Introduce two optional parameters in `to_tf`: `feature_type_spec` and `label_type_spec` (by default they are `None`). So user can set `tf.TypeSpec` explicitly and the `Dataset.schema()` call will be skipped. Signed-off-by: Cheng Su <scnju13@gmail.com>
ratnopam
pushed a commit
to ratnopam/ray
that referenced
this pull request
Feb 11, 2024
…y-project#42917) This PR is to skip `Dataset.schema()` call from `Dataset.to_tf()`. `Dataset.schema()` relies on `limit` to early stop execution, and sometimes the stop is not triggered timely so a lot of tasks get executed. This introduced problem to cause memory spilling. In addition, sometimes, it returns `None` (does not work with limit push down), and it breaks followed logic in `to_tf`, which all relies on `schema()` to work. In this PR: * Introduce two optional parameters in `to_tf`: `feature_type_spec` and `label_type_spec` (by default they are `None`). So user can set `tf.TypeSpec` explicitly and the `Dataset.schema()` call will be skipped. Signed-off-by: Cheng Su <scnju13@gmail.com> Signed-off-by: Ratnopam Chakrabarti <ratnopamc@yahoo.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why are these changes needed?
This PR is to skip
Dataset.schema()call fromDataset.to_tf().Dataset.schema()relies onlimitto early stop execution, and sometimes the stop is not triggered timely so a lot of tasks get executed. This introduced problem to cause memory spilling. In addition, sometimes, it returnsNone(does not work with limit push down), and it breaks followed logic into_tf, which all relies onschema()to work.In this PR:
to_tf:feature_type_specandlabel_type_spec(by default they areNone). So user can settf.TypeSpecexplicitly and theDataset.schema()call will be skipped.Related issue number
Checks
git commit -s) in this PR.scripts/format.shto lint the changes in this PR.method in Tune, I've added it in
doc/source/tune/api/under thecorresponding
.rstfile.