sankalp-indish/alexithymia_adhd
Viewer β’ Updated β’ 5.96k β’ 17
How to use sankalp-indish/alexithymia-adhd-predictor with BERTopic:
from bertopic import BERTopic
model = BERTopic.load("sankalp-indish/alexithymia-adhd-predictor")
A probabilistic MLP+SMOTED SVM Based classifier for early screening insights into emotional awareness and attention-related traits.
bertopic-based transformer classifiertext-classificationAccuracy, Precision, Recall, F1from transformers import pipeline
classifier = pipeline("text-classification", model="sankalp-indish/alexithymia-adhd-predictor")
classifier("I often find it hard to describe how I feel.")
The model takes in short user inputs and returns a probabilistic score for both Alexithymia and ADHD traits.
| Input Text | Alexithymia Score | ADHD Score |
|---|---|---|
| "I often struggle to explain what I'm feeling." | 1 | 0 |
| "I get distracted easily and can't finish tasks on time." | 0 | 1 |
| "Sometimes I can't tell if I'm anxious or excited." | 1 | 0 |
| "I daydream a lot and forget what I'm doing." | 0 | 1 |
π§ͺ These values are probabilities, not diagnoses.
Scores above 0.5 and 0.3 (based on the availability of the dataset) suggest strong presence of that trait.
Developed by Sankalp Indish [sankalp_indish] https://huggingface.co/sankalp-indish