|
|
--- |
|
|
language: en |
|
|
license: apache-2.0 |
|
|
tags: |
|
|
- text-classification |
|
|
- subcategory-classifier |
|
|
- disabilities |
|
|
datasets: |
|
|
- custom |
|
|
model-index: |
|
|
- name: SubCategory Classifier for Disabilities |
|
|
results: [] |
|
|
--- |
|
|
|
|
|
# 🧠 SubCategory Classifier for Disabilities |
|
|
|
|
|
This model classifies text inputs such as blog post titles or content into specific **disability-related subcategories** like `ADHD`, `Depression`, `Autism Spectrum Disorder`, etc. It's designed to help platforms categorize user-generated content automatically. |
|
|
|
|
|
--- |
|
|
|
|
|
## 🛠️ How to Use |
|
|
|
|
|
You can use this model directly with Hugging Face's `pipeline`: |
|
|
|
|
|
```python |
|
|
from transformers import pipeline |
|
|
|
|
|
classifier = pipeline("text-classification", model="karimmohamed19/knowledge_sharing") |
|
|
text = "I struggle with anxiety in school." |
|
|
result = classifier(text) |
|
|
print(result) |
|
|
|
|
|
|