-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Pandas to vw text format #2426
Merged
jackgerrits
merged 25 commits into
VowpalWabbit:master
from
etiennekintzler:pandas_to_vw_text_format
May 27, 2020
Merged
Pandas to vw text format #2426
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
1774056
Add class that converts pandas.DataFrame to VW input format
etiennekintzler 76b62e0
fix docstring
etiennekintzler 566a81e
fix typo in test_pyvw.py
etiennekintzler 3d00f04
fix docstring in pyvw.py
etiennekintzler 55043af
add test to DataFrameToVW to test conversion when no target is presen…
etiennekintzler 31aa448
specify col in formula using {}, enable more freedom in formatting, c…
etiennekintzler ae870db
Merge branch 'master' into pandas_to_vw_text_format
etiennekintzler a55705e
add check formula conformity + fix docstring. Add test for absent col…
etiennekintzler 58c6017
Merge branch 'pandas_to_vw_text_format' of github.com:etiennekintzler…
etiennekintzler 4d22355
fix pattern to allow decimal value
etiennekintzler 66de092
fix typo in docstring of DataFrameToVW.__init__
etiennekintzler 13a4441
create class based formula for the conversion of datafame to vw input…
etiennekintzler 6eed274
Merge branch 'master' into pandas_to_vw_text_format
etiennekintzler 8956151
remove abc class, did simple functions instead of inheriting from For…
etiennekintzler 17dbda1
Merge branch 'master' into pandas_to_vw_text_format
etiennekintzler f4329c3
fix typo on import DFtoVW class
etiennekintzler d455cce
handle the different init for OrderedDict in python 2.7
etiennekintzler d280994
Merge branch 'master' into pandas_to_vw_text_format
etiennekintzler b469318
Merge branch 'master' into pandas_to_vw_text_format
etiennekintzler e1f1f56
clean docstring and fix typos, add undescore for internal function
etiennekintzler b852caf
Merge branch 'master' into pandas_to_vw_text_format
etiennekintzler 8fff168
simplify tag parameter, add type checking for 'from_colnames' constru…
etiennekintzler ac6bd4e
fix type checking for x in 'from_colnames' constructor, remove unused…
etiennekintzler 736a569
change name of function process_label_and_value to process_label_and_tag
etiennekintzler 883f256
fix anomaly when calling process_df multiple times
etiennekintzler File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Oops, something went wrong.
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.
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.
Are empty feature names allowed on VW's input at all? cc @jackgerrits
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.
I understood that it is according @jackgerrits 's answer
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.
Yes