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

https://github.com/neoanarika/mbti

MBTI text classifer trained on the Kaggle MBTI dataset
https://github.com/neoanarika/mbti

deep-learning machine-learning psychology spacy

Last synced: 6 months ago
JSON representation

MBTI text classifer trained on the Kaggle MBTI dataset

Awesome Lists containing this project

README

          

# What is this repo about

This is a CNN based text classifier that uses spacy and is able to classify your Myers–Briggs personality type (e.g. INTJ, ENFP) based on a text or post you have written.

# How to use it

You can train the model using the jupyter notebook provided or load from a pre-trained model.

# Loading from pre-trained model

```
import spacy
text =
nlp = spacy.load("./mbti model")
doc = nlp(text)
print(doc.cats)
```