File size: 1,910 Bytes
02ecd92 | 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 59 60 61 62 63 64 | ---
language:
- en
license: other
license_name: pleius-internal
tags:
- onnx
- conditional-text-generation
- video-feedback
- distillation
- creator-tools
---
# cortexa-create-feedback (distilled student)
A ~4.4M-parameter conditional decoder distilled from
`M725/cortexa-create-scorer` outputs. Takes CLIP-ViT-B/32 vision
features (mean-pooled across video frames, 768-d) + the 5 Create pillar
scores and emits a creator-vernacular phrase chain about the short-form
video:
```
"first frame slaps | feels intentional"
"thumb stopping | shareable"
"filler | feels rushed | first frame is nothing"
"feels off beat | slow open | no payoff"
```
## Files
| file | purpose |
|---|---|
| `student_int8.onnx` | TinyTransformer decoder, 4 layers / 256-dim / 4 heads, INT8 dynamic-quantized. 6.9 MB. |
| `tokenizer.json` | Whole-phrase tokenizer (vocab ~138; specials `<pad>`, `<bos>`, `<eos>`, `<sep>`). |
| `config.json` | Encoder dim, pillar names, vocab size, special-token ids. |
## Inference shape
```
inputs:
encoder_feats (1, 768) float32 # mean-pooled CLIP-ViT-B/32 vision across frames
scores (1, 5) float32 # [hook, hold, algorithmic_fit, brand_lift, overall] in [0,1]
scores_present (1,) float32 # 1.0 anchored, 0.0 fast-mode
input_ids (1, T) int64
outputs:
logits (1, T, V) float32
```
Same sampling recommendation as `cortexa-marketing-feedback`: temperature
0.8 + top-k 20 + SEP-veto.
## Training
6k phrase triples from 3 real short-form videos
(`public/create-tutorial/*.mp4`) + 1997 synthetic "videos" built by
random-crop + color jitter over COCO stills (each frame goes through
cortexa_v10 separately, so the per-frame curve has real variation). 15
epochs. Val loss 2.39 → 1.97. See
`research/distill_students/train_create.py` in the app repo.
## License
Pleius internal — see https://pleius.com. Not for redistribution.
|