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.
You can train the model using the jupyter notebook provided or load from a pre-trained model.
import spacy
text = <Ur text>
nlp = spacy.load("./mbti model")
doc = nlp(text)
print(doc.cats)