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

Implement a schema field that can represent multi-valent value #20

Open
nikhilk opened this issue Mar 12, 2017 · 0 comments
Open

Implement a schema field that can represent multi-valent value #20

nikhilk opened this issue Mar 12, 2017 · 0 comments

Comments

@nikhilk
Copy link
Contributor

nikhilk commented Mar 12, 2017

In tf.Example, this is intrinsically supported by a feature with N entries in a list field. Think about what is the best way to support this in csv.

Couple of options come to mind:

  1. A ':' delimited set of numbers in a column. (pros: easy to produce; cons: requires more expensive string splitting)
  2. A sequence of bytes encoded as base64 into a column. (pros: more painful to produce; still requires base64 decoding but cheaper)

Scenarios

  1. Text run through a word2vec transform during data preparation.
  2. Image run through a image2vec (aka use inception model to extract features from image)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant