HarmoniCA
Collection
Harmonizing Clinical Assessments: enabling integration of symptom measures in large multi-site studies. • 6 items • Updated
How to use julia-pfarr/HarmoniCA_impulse-control with sentence-transformers:
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("julia-pfarr/HarmoniCA_impulse-control")
sentences = [
"The weather is lovely today.",
"It's so sunny outside!",
"He drove to the stadium."
]
embeddings = model.encode(sentences)
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]Part of the HarmoniCA collection for harmonising psychiatric questionnaire items across studies. This model assigns items from impulse control questionnaires to one of six theoretically motivated symptom dimensions.
| ID | Label | Description |
|---|---|---|
| 1 | Pathological Gambling | preoccupation with gambling, difficulty controlling gambling urges, time and money spent on gambling |
| 2 | Hypersexuality | preoccupation with sex, difficulty controlling sexual urges, time and money spent on sexual activities |
| 3 | Compulsive Buying | preoccupation with buying, difficulty controlling buying urges, excessive spending |
| 4 | Compulsive Eating | preoccupation with eating, difficulty controlling eating urges, overeating |
| 5 | Punding & Hobbyism | stereotyped or repetitive behaviors, excessive engagement with hobbies, purposeless repetitive activities |
| 6 | Dopamine Dysregulation Syndrome | compulsive use of dopaminergic medication beyond therapeutic need |
Items rated as not belonging to the impulse control construct are assigned dimension -1 (Does not fit).
The PrototypeModel learns a single prototype embedding per dimension. At inference, items are assigned to the nearest prototype in the fine-tuned embedding space.
Evaluated on 124 held-out items from unseen questionnaires against expert labels.
| Cohen's κ | Accuracy |
|---|---|
| 0.884 | 90.3% |
in preparation
Base model
hkunlp/instructor-large