
UU Open Dag 2025

AI kan ook negatieve effecten hebben op de economie en samenleving.
Voorbeelden:
Definitie van AI
AI is een verzameling van technieken die computers in staat stellen taken uit te voeren die normaal menselijke intelligentie vereisen.
flowchart LR
%% Change direction to Left-Right to fit slides better
%% 1. DATA
subgraph Step1 ["Step 1: Data"]
direction TB
Source["📚 Raw Data"] --> Convert["🔢 Convert to #'s"]
end
%% 2. GUESS
subgraph Step2 ["Step 2: Guess"]
direction TB
Model("🧠 AI Model")
Input["Input: 'The quick...'"] --> Model
Model --> Pred["❓ Guess: 'sleeps'"]
end
%% 3. CHECK
subgraph Step3 ["Step 3: Check"]
direction TB
Truth["✅ Real: 'jumps'"]
Pred --> Compare{"⚖️"}
Truth --> Compare
Compare --> Loss["📉 Calc Error"]
end
%% 4. UPDATE
subgraph Step4 ["Step 4: Update"]
direction TB
Loss --> Adjust["🛠️ Tune Math"]
end
%% CONNECT THE STEPS
Convert --> Model
Adjust -.->|Backprop| Model
%% STYLING
style Step1 fill:#e1f5fe,stroke:#01579b
style Step2 fill:#fff3e0,stroke:#e65100
style Step3 fill:#ffebee,stroke:#b71c1c
style Step4 fill:#e8f5e9,stroke:#1b5e20
style Model fill:#fff,stroke:#333,stroke-width:3px
Boerenkool met [...]hagelslagworst.”Boerenkool sterk te koppelen aan worst en zwak aan hagelslag.['ben', 'ben']. De kans dat “ben” wordt voorspeld is 100%.['open', 'UU'].import random
# 1. The Training Data (Corpus)
text = "ik ben vrolijk want ik ben op de open dag van de UU."
words = text.split()
# 2. "Training" the Model (Building the relationships)
# We look at every word and record what word comes immediately after it.
brain = {}
for i in range(len(words) - 1):
current_word = words[i]
next_word = words[i+1]
if current_word not in brain:
brain[current_word] = []
brain[current_word].append(next_word)
# 3. Using the Model (Inference)
input_word = "de" # Probeer dit te veranderen
prediction = random.choice(brain[input_word])
print(f"Prompt: '{input_word}' -> AI Predicted: '{prediction}'")Prompt: 'de' -> AI Predicted: 'open'
Kunstmatige Intelligentie in de Economie