This repository contains an easy and intuitive approach to few-shot text classification using sentence-transformers and spacy embeddings.
Project description
Classy few shot classification
This repository contains an easy and intuitive approach to few-shot text classification.
Why?
Huggingface does offer some nice models for few/zero-shot classification, but these are not tailored to multi-lingual approaches. Rasa NLU has a nice approach for this, but its to embedded in their codebase for easy usage outside of Rasa/chatbots. Additionally, it made sense to integrate sentence-transformers, instead of default word embeddings. Finally, I decided to integrate with Spacy, since training a custom Spacy TextCategorizer seems like a lot of hassle if you want something quick.
Install
pip install classy-classification
Quickstart
Take a look at the examples directory.
Some quick and dirty training data.
training_data = {
"politics": [
"Putin orders troops into pro-Russian regions of eastern Ukraine.",
"The president decided not to go through with his speech.",
"There is much uncertainty surrounding the coming elections.",
"Democrats are engaged in a ‘new politics of evasion’"
],
"sports": [
"The soccer team lost.",
"The team won by two against zero.",
"I love all sport.",
"The olympics were amazing.",
"Yesterday, the tennis players wrapped up wimbledon."
],
"weather": [
"It is going to be sunny outside.",
"Heavy rainfall and wind during the afternoon.",
"Clear skies in the morning, but mist in the evenening.",
"It is cold during the winter.",
"There is going to be a storm with heavy rainfall."
]
}
validation_data = [
"I am surely talking about politics.",
"Sports is all you need.",
"Weather is amazing."
]
using an individual sentence-transformer
from classy_classification import classyClassifier
classifier = classyClassifier(data=training_data)
classifier(validation_data[0])
classifier.pipe(validation_data)
# overwrite training data
classifier.set_training_data(data=new_training_data)
# overwrite [embedding model](https://www.sbert.net/docs/pretrained_models.html)
classifier.set_embedding_model(model="paraphrase-MiniLM-L3-v2")
# overwrite SVC config
classifier.set_svc(
config={
"C": [1, 2, 5, 10, 20, 100],
"kernels": ["linear"],
"max_cross_validation_folds": 5
}
)
external sentence-transformer within spacy pipeline
import spacy
import classy_classification
nlp = spacy.blank("en")
nlp.add_pipe("text_categorizer", config={"data": training_data}) # provide similar config as above
nlp(validation_data[0])._.cats
nlp.pipe(validation_data)
internal spacy word2vec embeddings
import spacy
import classy_classification
nlp = spacy.load("en_core_web_md")
nlp.add_pipe("text_categorizer", config={"data": training_data, "model": "spacy"}) #use internal embeddings from spacy model
nlp(validation_data[0])._.cats
nlp.pipe(validation_data)
Todo
[ ] look into a way to integrate spacy trf models.
Inspiration Drawn From
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for classy-classification-0.1.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b0626d20637761bf09c96797e39b4b3849533bd417e361c7312bd34ecd92c28 |
|
MD5 | 91f7d395bc3813eeb5393e8b6932ee7e |
|
BLAKE2b-256 | 807aa6e2c291efa5942d333191885a80d384a9f9e3fc55888140073d600d74ee |
Hashes for classy_classification-0.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d80042fbe48ff07fe3cb482f9e8979187daf4e971b4bab1b7cb0855a8c1477eb |
|
MD5 | 39e58641040fbad73ea599bb32553a7f |
|
BLAKE2b-256 | f367a273207c5302fd97f811220645578d18583a7329b4dbfc57ccf9abea3095 |