Downloads · 30 days
17
20% of all-time downloads
ernchern/personal_info_classification
personal_info_classification is a text classification model from ernchern. Use it when you need a label for a piece of text. It is set up for transformers. The card lists the license as openrail.
This model is a fine-tuned version of BLOOM-560m designed to classify personal experience sharing in social media text. It was developed to explore how different generations (Baby Boomers and Gen X) express themselves…
Downloads · 30 days
17
20% of all-time downloads
All-time downloads
86
Public
Parameters
559M
4.5 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors2.2 GB · 99%
From the Hugging Face model README
This model is a fine-tuned version of BLOOM-560m designed to classify personal experience sharing in social media text. It was developed to explore how different generations (Baby Boomers and Gen X) express themselves on pseudonymous platforms like Reddit.
bigscience/bloom-560m.The model classifies individual sentences into one of four categories to analyze domains of self-disclosure in online forums.
r/AskOldPeople.The model achieved high accuracy on a held-out test set:
| Metric | Value |
|---|---|
| F1 Score | 0.9599 |
You can use this model directly with the Hugging Face transformers library:
from transformers import pipeline
classifier = pipeline("text-classification", model="ernchern/personal_info_classification")
text = "I am 67, retired in August, and most basic expenses are covered by Social Security."
result = classifier(text)
print(result)