Skip to content

Neoanarika/MBTI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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 = <Ur text>
nlp = spacy.load("./mbti model")
doc = nlp(text)
print(doc.cats)