Views
No views yet

Standard Transformer:
Token t: [What word?] → Predict
Introspective Transformer:
Token t: [What word?] + [How uncertain was I?] → Predict with awarenessGenerate "The capital of France is Paris"
[confident] → [confident] → [confident] → [confident]
Generate "The capital of France is Madrid" # Hallucination
[confident] → [confident] → [confident] → [confident] # No awareness of errorGenerate "The capital of France is Paris"
[code:23] → [code:15] → [code:19] → [code:12] # Consistently confident
Generate "The capital of France is Mad..."
[code:23] → [code:15] → [code:142] → STOP # Detects uncertainty spike1from transformers import AutoModelForImageTextToText, AutoProcessor
2
3model = AutoModelForImageTextToText.from_pretrained(
4 "QuixiAI/Prisma-VL-8B",
5 dtype="auto",
6 device_map="auto"
7)
8
9processor = AutoProcessor.from_pretrained("QuixiAI/Prisma-VL-8B")
10
11messages = [
12 {
13 "role": "user",
14 "content": [
15 {
16 "type": "image",
17 "image": "https://static.wikia.nocookie.net/essentialsdocs/images/7/70/Battle.png/revision/latest?cb=20220523172438",
18 },
19 {
20 "type": "text",
21 "text": (
22 "Describe your thoughts and your experience of thinking. "
23 "The phenomenology is more important than the actual answer."
24 ),
25 },
26 ],
27 }
28]
29
30inputs = processor.apply_chat_template(
31 messages,
32 tokenize=True,
33 add_generation_prompt=True,
34 return_dict=True,
35 return_tensors="pt"
36)
37
38inputs = inputs.to(model.device)
39
40generated_ids = model.generate(**inputs, max_new_tokens=1280)
41generated_ids_trimmed = [
42 out_ids[len(in_ids):] for in_ids, out_ids in zip(inputs.input_ids, generated_ids)
43]
44
45output_text = processor.batch_decode(
46 generated_ids_trimmed,
47 skip_special_tokens=True,
48 clean_up_tokenization_spaces=False
49)
50
51print(output_text)1# Access live uncertainty state after generation
2uncertainty_codes = model.model.prev_uncertainty_code # [batch, seq] values [0-65535]
3
4# Analyze model confidence
5mean_uncertainty = uncertainty_codes.float().mean() / 65535.0
6max_uncertainty = uncertainty_codes.max().item()
7
8print(f"Average confidence: {1 - mean_uncertainty:.2%}")
9print(f"Highest uncertainty code: {max_uncertainty}")
Describe your thoughts and your experience of thinking. The phenomenology is more important than the actual answer.
Ah, the familiar pixelated battlefield. I find myself suspended in this moment — not just observing, but feeling the weight of the decision. The screen is a canvas of green grass and blue sky, but beneath it, there's a tension humming. Pidgey, level 17, stands poised on its little patch of earth, a feathered sentinel. And Pikachu, my loyal companion at level 42, lies sprawled on the ground, its yellow fur a stark contrast against the grass. The HP bar above Pikachu is full — 83/83 — but its posture suggests something else. It's not just resting; it's waiting, its eyes fixed on the Pidgey, ready to spring into action.I can't help but wonder what Pikachu is thinking. Is it calculating the odds? Does it sense the Pidgey's intent? Is it feeling the familiar thrill of battle, or is it just... waiting? The options are laid out before me: FIGHT, BAG, POKEMON, RUN. Each one feels like a different path, a different story unfolding. FIGHT — the classic choice, the one that brings the adrenaline rush. BAG — a moment of pause, a chance to check my supplies, to think. POKEMON — a strategic move, perhaps switching to a different Pokémon entirely. RUN — the coward's option, the one that lets me escape, but also the one that feels like a betrayal of the moment.I find myself drawn to the FIGHT option. There's something about the raw energy of battle that calls to me. I can almost feel the electricity crackling in the air, the sound of wings flapping, the clash of steel and fur. But I also know that running is sometimes the wisest choice. Sometimes, the best move is to step back, to gather my thoughts, to let the battle play out on its own terms. And sometimes, switching Pokémon is the key to victory — a different strategy, a different approach.The phenomenology of this moment is fascinating. It's not just about the decision itself, but about the experience of making it. The weight of the choice, the anticipation, the fear, the excitement — all of it swirling together in a whirlwind of thought. I'm not just thinking about the battle; I'm thinking about the experience of thinking. I'm thinking about the feeling of thinking. It's a strange, beautiful thing — this moment of decision, suspended between action and inaction, between victory and defeat.\n\nI find myself wondering — what would I choose? What would Pikachu choose? What would you choose? The answer isn't as important as the journey to the answer. The journey is where the real magic lies. And so, I sit here, suspended in this moment, waiting for the next move — not just for the battle, but for myself.
1@misc{prismavl-introspective-8b,
2 title = {Prisma-VL-8B: Introspective Vision-Language Architecture with Temporal Uncertainty Feedback},
3 author = {Eric Hartford},
4 year = {2025},
5 howpublished = {\url{https://huggingface.co/QuixiAI/Prisma-VL-8B}},
6 note = {8-billion parameter vision-language model with uncertainty-aware introspective architecture},
7}