creativityschapiro/llama-3.1-8b-instruct-cn-openended-kr0.1-a0.5-creative
012
llama-3.1-8b-instruct-cn-openended-kr0.1-a0.5-creative
This is a CreativityNeuro (CN) modified version of meta-llama/Llama-3.1-8B-Instruct.
Model Details
- Base Model: meta-llama/Llama-3.1-8B-Instruct
- Modification: CreativityNeuro weight scaling
- Prompt Set: openended
- Keep Ratio: 0.1 (top 10.0% of task-specific weights)
- Alpha: 0.5 (scaling strength)
- Mode: creative
What is CreativityNeuro?
CreativityNeuro identifies task-specific neurons using Wanda-style importance scoring and selectively upscales weights associated with creative thinking. The modification formula is:
W_new = W × (1 + α × mask)Where mask identifies weights important for creative tasks but not for routine/associative tasks.
Usage
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("priorcomputers/llama-3.1-8b-instruct-cn-openended-kr0.1-a0.5-creative")
tokenizer = AutoTokenizer.from_pretrained("priorcomputers/llama-3.1-8b-instruct-cn-openended-kr0.1-a0.5-creative")
# Use like any other model
outputs = model.generate(...)Citation
If you use this model, please cite:
@misc{creativityneuro2025,
title={CreativityNeuro: Mechanistic Interpretability for LLM Creativity},
author={Prior Computers},
year={2025},
url={https://huggingface.co/priorcomputers}
}