# Yapay Zekalar icin Visualization Hatirlatmalari

1. STATE MACHINE - state geçişleri, transition kuralları, terminal states
2. BOX DIAGRAM (Black/White) - abstraction level, detay gizleme/gösterme
3. FLOW CHART - sequential flow, conditional branching, merge points
4. DECISION TREE - hierarchical decisions, criteria-based branching
5. FEEDBACK LOOP - circular causality, self-regulation, reinforcing/balancing
6. CAUSAL LOOP - causal chains, feedback polarity (+/-), delays
7. HIERARCHY / TREE - parent-child, depth levels, breadth
8. PROCESS PIPELINE - sequential stages, data transformation
9. LAYERED ARCHITECTURE - separation of concerns, abstraction layers
10. NETWORK / GRAPH - nodes, edges, connections, topology
11. MATRIX / GRID - two-dimensional, row/column relationships
12. VENN DIAGRAM - set relationships, intersection, union
13. TIMELINE / SEQUENCE - temporal ordering, before/after, dependencies
14. INPUT-OUTPUT TRANSFORMATION - function mapping, side effects
15. CONTAINER / SCOPE - nesting, scope boundaries, containment

```sh
A ──> B ──╮
          │
          ╰──> C ──> D
Start ──╮
        │
        ╰───╮
            │
            ╰───> End

 ┌──────────────┐
 │ voice msg    │
 └──────┬───────┘
				▼
		◉ voice_received ◄────────────────┐
				▼                             │
	voice_transcribe                    │
				▼                             │
		◉ voice_transcribed (TEXT)        │
				│                             │
				├──────────┬─────────┐        │
				▼          ▼         ▼        │
text_synthesize  translate  tag       │
				│          │         │        │
				▼          ▼         ▼        │
		◉ voice_   ◉ text_   ◉ tag_       │
		synthesized translated selection  │
		(VOICE)    (TEXT)     (SPECIAL)   │
				│          │                  │
				└──────────┴──────────────────┘
				▲                     │
				└─────────────────────┘
```

PATTERN: Her model bir abstraction level seçer ve belirli bir görünüm sağlar. CONSTRAINT: Model seçimi soruya bağlıdır — state geçişleri için state machine, hiyerarşi için tree, zaman için timeline.
