King-8/creative-energy-analyzer
π¨ Creative Energy Sentiment Classifier
This model is fine-tuned to detect creative emotional states in text. It predicts one of six nuanced sentiment labels that represent different dimensions of creative energy: from inspiration and flow to burnout and doubt.
π§ Labels
The model classifies text into one of the following six labels:
π§ States of Creative Energy
Each label is mapped to a creative state β a broader dimension of how energy shows up in the creative process:
These contrasts help reveal how creativity shifts between energized and blocked states.
π Training
- Base Model:
distilbert-base-uncased - Fine-tuned on: 1,200 labeled examples (200 per class)
- Format: JSONL with
"text","label", and"state" - Split: 80/10/10 (train/val/test)
π¦ Dataset
This model was trained on the custom King-8/creative-energy-sentiment dataset (https://huggingface.co/datasets/King-8/creative-energy-sentiment), containing 1,200 examples crafted and categorized into 6 emotion-based labels.
π‘ Inspiration
This project aims to go beyond typical positive/negative sentiment and capture the emotional complexity of the creative process β to better support artists, writers, students, and thinkers navigating their creative energy.
π§ͺ Example Usage
from transformers import pipeline
classifier = pipeline("text-classification", model="King-8/creative-energy-sentiment")
classifier("Iβve been experimenting with new textures all morning β it's so fun!")
# [{'label': 'expressive', 'score': 0.91}]Training results
Evaluation (Validation Set)
- Loss: 0.6559
- Accuracy: 0.7667
- Precision: 0.7630
- Recall: 0.7667
- F1: 0.7618
Framework versions
- Transformers 4.56.1
- Pytorch 2.8.0+cu126
- Datasets 4.1.1
- Tokenizers 0.22.0
