-
Notifications
You must be signed in to change notification settings - Fork 196
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
Font change #262
Open
pithysr
wants to merge
13
commits into
GEM-benchmark:main
Choose a base branch
from
pithysr:font_change
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Font change #262
Changes from 11 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
8758186
font change transformation added post-opt
pithysr 5f951e0
readme and class name changed
pithysr 0c3cca6
further changes in README
pithysr cd61e02
further changes in README
pithysr 599284e
Even further changes in README
pithysr 0f29142
Merge branch 'GEM-benchmark:main' into font_change
pithysr 2b2f60c
changes after the reviews
pithysr b7cbe62
Merge branch 'font_change' of https://github.com/pithysr/NL-Augmenter…
pithysr a51022b
constructor updated
pithysr 92b3f78
docstring added, list of languages added
pithysr e74c46f
Merge branch 'GEM-benchmark:main' into font_change
pithysr 74c5711
Merge branch 'main' into font_change
pithysr 9c82836
data and code section added to README
pithysr 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Font Change | ||
|
||
The Font Change transformation modifies words in the input to have a stylized appearance using suitable Unicode characters, as often in encountered in social media posts. | ||
|
||
Authors: [Shahab Raji](mailto:shahab.raji@rutgers.edu) (Rutgers University) and [Gerard de Melo](http://gerard.demelo.org/) | ||
(Hasso Plattner Institute / University of Potsdam) | ||
|
||
|
||
## How does the transformation work? | ||
|
||
Font Change adapts the appearance of randomly selected words in the input sentence. For each selected word, one of several possible appearance changes is chosen randomly. Such changes are achieved using Unicode characters based on mapping tables from the [𝓾𝓷𝓲𝓬𝓸𝓭𝓮 𝙛𝙤𝙧𝙢𝙖𝙩𝙩𝙚𝙧](https://github.com/DenverCoder1/unicode-formatter) (MIT license) tool. | ||
|
||
Examples: | ||
|
||
> The quick brown fox jumps over the lazy dog. | ||
|
||
to | ||
|
||
> The quick brown 🅵🅾🆇 ɾnɯds over the lazy ᴅᴏɢ. | ||
|
||
## Target Tasks | ||
|
||
This transformation can be used for data augmentation in text classification tasks. | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from .transformation import * |
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.
You should add a Data And Code Provenance section to point out the correct source of all the files.
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.
@kaustubhdhole Hi, I had this information in the README file but I added a separate section. However, now I cannot commit due to an error (
No module named 'torchtext'
). I did not have this error previously when submitting the code. Can I submit withgit commit --no-verify
?