Lightweight NLP library in pure Python - currently implements a text classifier
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Samuel Sloniker 4d93b245e8 Switch to LGPL v3 or later 2 years ago
gptc Switch to LGPL v3 or later 2 years ago
models Recompile example model 3 years ago
utils Switch to LGPL v3 or later 2 years ago
.gitignore Use good gitignore 4 years ago
GPL-3.0 Switch to LGPL v3 or later 2 years ago
LGPL-3.0 Switch to LGPL v3 or later 2 years ago
LICENSE Switch to LGPL v3 or later 2 years ago
README.md Add Classifier.confidence() 3 years ago
setup.py Add setup.py 2 years ago

README.md

GPTC

General-purpose text classifier in Python

GPTC provides both a CLI tool and a Python library.

CLI Tool

Classifying text

`python -m gptc <modelfile>`

This will prompt for a string and classify it, outputting the category on stdout (or "None" if it cannot determine anything).

Alternatively, if you need confidence data, use:

`python -m gptc -j <modelfile>`

This will print (in JSON) a dict of the format {category: probability, category:probability, ...} to stdout.

Compiling models

gptc <raw model file> -c|--compile <compiled model file>

Library

gptc.Classifier(model)

Create a Classifier object using the given compiled model (as a dict, not JSON).

Classifier.confidence(text)

Classify text. Returns a dict of the format {category: probability, category:probability, ...}

Classifier.classify(text)

Classify text. Returns the category into which the text is placed (as a string), or None when it cannot classify the text.

gptc.compile(raw_model)

Compile a raw model (as a list, not JSON) and return the compiled model (as a dict).

Model format

This section explains the raw model format, which is how you should create and edit models.

Raw models are formatted as a list of dicts. See below for the format:

[
    {
        "text": "<text in the category>",
        "category": "<the category>"
    }
]

GPTC handles models as Python lists of dicts of strs (for raw models) or dicts of strs and floats (for compiled models), and they can be stored in any way these Python objects can be. However, it is recommended to store them in JSON format for compatibility with the command-line tool.

Example model

An example model, which is designed to distinguish between texts written by Mark Twain and those written by William Shakespeare, is available in models. The raw model is in models/raw.json; the compiled model is in models/compiled.json.