File size: 837 Bytes
e54b223 7c14d1c 1e7a08c 7c14d1c 1e7a08c 7c14d1c 1e7a08c 7c14d1c 1e7a08c 7c14d1c 1e7a08c 7c14d1c 1e7a08c 7c14d1c 1e7a08c 7c14d1c 1e7a08c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
---
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)
|