All Projects → KennethEnevoldsen → augmenty

KennethEnevoldsen / augmenty

Licence: MIT License
Augmenty is an augmentation library based on spaCy for augmenting texts.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to augmenty

NLP Quickbook
NLP in Python with Deep Learning
Stars: ✭ 516 (+410.89%)
Mutual labels:  text-classification, spacy, spacy-nlp
spacy-iwnlp
German lemmatization with IWNLP as extension for spaCy
Stars: ✭ 22 (-78.22%)
Mutual labels:  spacy, spacy-extension
spacy conll
Pipeline component for spaCy (and other spaCy-wrapped parsers such as spacy-stanza and spacy-udpipe) that adds CoNLL-U properties to a Doc and its sentences and tokens. Can also be used as a command-line tool.
Stars: ✭ 60 (-40.59%)
Mutual labels:  spacy, spacy-extension
tweets-preprocessor
Repo containing the Twitter preprocessor module, developed by the AUTH OSWinds team
Stars: ✭ 26 (-74.26%)
Mutual labels:  spacy, spacy-nlp
extractacy
Spacy pipeline object for extracting values that correspond to a named entity (e.g., birth dates, account numbers, laboratory results)
Stars: ✭ 47 (-53.47%)
Mutual labels:  spacy, spacy-extension
spacymoji
💙 Emoji handling and meta data for spaCy with custom extension attributes
Stars: ✭ 174 (+72.28%)
Mutual labels:  spacy, spacy-extension
TextFeatureSelection
Python library for feature selection for text features. It has filter method, genetic algorithm and TextFeatureSelectionEnsemble for improving text classification models. Helps improve your machine learning models
Stars: ✭ 42 (-58.42%)
Mutual labels:  text-classification, nlproc
spaczz
Fuzzy matching and more functionality for spaCy.
Stars: ✭ 215 (+112.87%)
Mutual labels:  spacy, spacy-extension
bert-tensorflow-pytorch-spacy-conversion
Instructions for how to convert a BERT Tensorflow model to work with HuggingFace's pytorch-transformers, and spaCy. This walk-through uses DeepPavlov's RuBERT as example.
Stars: ✭ 26 (-74.26%)
Mutual labels:  spacy, spacy-nlp
spacy hunspell
✏️ Hunspell extension for spaCy 2.0.
Stars: ✭ 94 (-6.93%)
Mutual labels:  spacy, spacy-extension
nlpbuddy
A text analysis application for performing common NLP tasks through a web dashboard interface and an API
Stars: ✭ 115 (+13.86%)
Mutual labels:  text-classification, spacy
hmrb
Python Rule Processing Engine 🏺
Stars: ✭ 65 (-35.64%)
Mutual labels:  spacy, spacy-extension
spacy-langdetect
A fully customisable language detection pipeline for spaCy
Stars: ✭ 86 (-14.85%)
Mutual labels:  spacy, spacy-extension
turing
✨ 🧬 Turing AI - Semantic Navigation, Chatbot using Search Engine and Many NLP Vendors.
Stars: ✭ 30 (-70.3%)
Mutual labels:  spacy, spacy-nlp
Semantic-Textual-Similarity
Natural Language Processing using NLTK and Spacy
Stars: ✭ 30 (-70.3%)
Mutual labels:  spacy, spacy-nlp
nlp-cheat-sheet-python
NLP Cheat Sheet, Python, spacy, LexNPL, NLTK, tokenization, stemming, sentence detection, named entity recognition
Stars: ✭ 69 (-31.68%)
Mutual labels:  spacy, spacy-nlp
Spacy
💫 Industrial-strength Natural Language Processing (NLP) in Python
Stars: ✭ 21,978 (+21660.4%)
Mutual labels:  text-classification, spacy
Text Analytics With Python
Learn how to process, classify, cluster, summarize, understand syntax, semantics and sentiment of text data with the power of Python! This repository contains code and datasets used in my book, "Text Analytics with Python" published by Apress/Springer.
Stars: ✭ 1,132 (+1020.79%)
Mutual labels:  text-classification, spacy
alter-nlu
Natural language understanding library for chatbots with intent recognition and entity extraction.
Stars: ✭ 45 (-55.45%)
Mutual labels:  text-classification, spacy
contextualSpellCheck
✔️Contextual word checker for better suggestions
Stars: ✭ 274 (+171.29%)
Mutual labels:  spacy, spacy-extension

Augmenty: The cherry on top of your NLP pipeline

PyPI version python version Code style: black github actions pytest github actions docs github coverage CodeFactor Streamlit App

Augmenty is an augmentation library based on spaCy for augmenting texts. Besides a wide array of highly flexible augmenters, Augmenty provides a series of tools for working with augmenters, including combining and moderating augmenters. Augmenty differs from other augmentation libraries in that it corrects (as far as possible) the assigned labels under the augmentation, thus making many of the augmenters valid for training in a wider range of tasks.

🔧 Installation

To get started using augmenty simply install it using pip by running the following line in your terminal:

pip install augmenty

Do note that this is a minimal installation. As some augmenters requires additional packages please write the following line to install all dependencies.

pip install augmenty[all]

For more detailed instructions on installing augmenty, including specific language support, see the installation instructions.

🍒 Simple Example

The following shows a simple example of how you can quickly augment text using Augmenty. For more on using augmenty see the usage guides.

import spacy
import augmenty

nlp = spacy.load("en_core_web_md")

docs = nlp.pipe(["Augmenty is a great tool for text augmentation"])

entity_augmenter = augmenty.load("ents_replace.v1", 
                                 ent_dict = {"ORG": [["spaCy"], ["spaCy", "Universe"]]}, level=1)

for doc in augmenty.docs(docs, augmenter=entity_augmenter, nlp=nlp):
    print(doc)
spaCy Universe is a great tool for text augmentation.

📖 Documentation

Documentation
📚 Usage Guides Guides and instructions on how to use augmenty and its features.
📰 News and changelog New additions, changes and version history.
🎛 API References The detailed reference for augmenty's API. Including function documentation
🍒 Augmenters Contains a full list of current augmenters in augmenty.
😎 Demo A simple Streamlit demo to try out the augmenters.
🙋 FAQ Frequently asked question regarding augmenty

💬 Where to ask questions

Type
🚨 Bug Reports GitHub Issue Tracker
🎁 Feature Requests & Ideas GitHub Issue Tracker
👩‍💻 Usage Questions GitHub Discussions
🗯 General Discussion GitHub Discussions
🍒 Adding an Augmenter Adding an augmenter
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].