-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
Add Pandas as format type #17
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.
Awesome!
src/nlp/arrow_dataset.py
Outdated
@@ -194,7 +194,7 @@ def set_format(self, type: Optional[str] = None, columns: Optional[List] = None) | |||
logger.error("Tensorflow needs to be installed to be able to return Tensorflow tensors.") | |||
else: | |||
assert ( | |||
type is None or type == "numpy" | |||
type is None or type == "numpy" or type == 'pandas' | |||
), "Return type should be None or selected in ['numpy', 'torch', 'tensorflow']." |
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.
Add 'pandas' in the list
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.
Should be ok now
src/nlp/arrow_dataset.py
Outdated
@@ -236,11 +236,16 @@ def convert_outputs(self, outputs): | |||
import tensorflow | |||
|
|||
command = tensorflow.constant | |||
elif self._format_type == 'pandas': | |||
import pandas | |||
command = pandas.DataFrame |
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.
Is this better than using the native arrow conversion to pandas by the way?
I thought native would be faster
cf: https://arrow.apache.org/docs/python/pandas.html
and https://wesmckinney.com/blog/high-perf-arrow-to-pandas/
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.
It was less code to write 😆 but I didn't know about this diff of speed. I have pushed a new commit.
As detailed in the title ^^