File size: 1,599 Bytes
49609b1 | 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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | ---
tags:
- creativityneuro
- llm-creativity
- mechanistic-interpretability
base_model: microsoft/Phi-3.5-mini-instruct
license: apache-2.0
---
# phi-3.5-mini-instruct-cn-problem-kr0.2-a0.01-creative
This is a **CreativityNeuro (CN)** modified version of [microsoft/Phi-3.5-mini-instruct](https://huggingface.co/microsoft/Phi-3.5-mini-instruct).
## Model Details
- **Base Model**: microsoft/Phi-3.5-mini-instruct
- **Modification**: CreativityNeuro weight scaling
- **Prompt Set**: problem
- **Keep Ratio**: 0.2 (top 20.0% of task-specific weights)
- **Alpha**: 0.01 (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
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("priorcomputers/phi-3.5-mini-instruct-cn-problem-kr0.2-a0.01-creative")
tokenizer = AutoTokenizer.from_pretrained("priorcomputers/phi-3.5-mini-instruct-cn-problem-kr0.2-a0.01-creative")
# Use like any other model
outputs = model.generate(...)
```
## Citation
If you use this model, please cite:
```bibtex
@misc{creativityneuro2025,
title={CreativityNeuro: Mechanistic Interpretability for LLM Creativity},
author={Prior Computers},
year={2025},
url={https://huggingface.co/priorcomputers}
}
```
|