textaugment icon indicating copy to clipboard operation
textaugment copied to clipboard

TextAugment: Text Augmentation Library

Results 13 textaugment issues
Sort by recently updated
recently updated
newest added

Bumps [numpy](https://github.com/numpy/numpy) from 1.18.4 to 1.22.0. Release notes Sourced from numpy's releases. v1.22.0 NumPy 1.22.0 Release Notes NumPy 1.22.0 is a big release featuring the work of 153 contributors spread...

dependencies

I have registered travis for the project.

I am unable to translate text from one language to other. Code: ``` from textaugment import Translate t = Translate(src="en", to="fr") t.augment('In the afternoon, John is going to town') ```...

hacktoberfest

This error yield out when I usse textaugment with gensim 4 but not gensim 3 ``` File "aug.py", line 15, in data_df['paraphrased_text'] = data_df['text'].progress_apply(lambda x: w2v.augment(x)) File "/home/anhvd/.local/lib/python3.7/site-packages/tqdm/std.py", line 770,...

bug
enhancement
hacktoberfest

- [ ] Synonym-based augmentation will require synonyms in Chinese - [x] RTT-based augmentation already supported. User will have to translate words from Chinese to another language then back to...

enhancement
hacktoberfest

Bumps [joblib](https://github.com/joblib/joblib) from 0.15.1 to 1.2.0. Changelog Sourced from joblib's changelog. Release 1.2.0 Fix a security issue where eval(pre_dispatch) could potentially run arbitrary code. Now only basic numerics are supported....

dependencies

The latest version of Textblob has following change: - TextBlob.translate() and TextBlob.detect_language are deprecated. Use the official Google Translate API instead Hence the import is failing while using textaugment. Please...