Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/banjtheman/instatext

Train text classifiers instantly
https://github.com/banjtheman/instatext

Last synced: about 1 month ago
JSON representation

Train text classifiers instantly

Awesome Lists containing this project

README

        

instatext: Train text classifiers instantly
====================================

`instatext` is a Python 3 library for processing textual data. It provides a simple API for training and predicting with text classifiers.

instatext leverages `fasttext`, and `pandas`, for the heavy lifting

Get it now
----------
$ pip install instatext

Requirements
------------

- Python >= 3.5

Example
--------
To train a model pass in a csv with the text and labels

text - the text to classify
labels - comma seperated list of labels

```
text,labels
sample text,"sample"
bad stuff,"bad,sample"
good stuff,"good,sample"
```

```python
import instatext
import logging

def main():
print("hello")

instatext.train_model("test_data/example.csv", "test")
instatext.predict("test", "Predict my good text",0.5)

if __name__ == "__main__":
loglevel = logging.INFO
logging.basicConfig(
format="%(asctime)s |%(levelname)s: %(message)s", level=loglevel
)
main()
```