Skip to content
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

Merged
merged 4 commits into from
Apr 27, 2020
Merged

Add Pandas as format type #17

merged 4 commits into from
Apr 27, 2020

Conversation

jplu
Copy link
Contributor

@jplu jplu commented Apr 23, 2020

As detailed in the title ^^

Copy link
Member

@thomwolf thomwolf left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome!

@@ -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']."
Copy link
Member

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

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be ok now

@@ -236,11 +236,16 @@ def convert_outputs(self, outputs):
import tensorflow

command = tensorflow.constant
elif self._format_type == 'pandas':
import pandas
command = pandas.DataFrame
Copy link
Member

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/

Copy link
Contributor Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants