Neural Ninjas ยท Rune Forge Arena
Tap the code fragments, snap them into place, cast. No typing โ just the right pieces in the right order.
| Symbol | Name / Concept | Code Weapon | Mental Model |
|---|---|---|---|
| ฮฃ | Sigma โ Summation | np.sum() | Looks like a sideways E โ stands for Sum |
| โ | Pi โ Product | np.prod() | Looks like a gate โ everything multiplies through |
| โ | Partial derivative | .backward() | Derivative through a network = backpropagation |
| e | Euler's number | np.exp() | e to a power = exponentiation = exp() |
| ฮธ | Theta โ Parameters | optimizer.step() | Updating ฮธ is one optimizer step |
| P | Softmax probability | F.softmax() | P(y) is a probability distribution โ softmax builds one |
| ฯ | Sigma โ Std Dev | .std() | Lowercase ฯ = standard deviation = .std() |
| QKV | Attention | scaled_dot_product_attention() | Query, Key, Value โ three letters, one word: Attention |
| ฮฉ | Omega โ Final layer | torch.sigmoid() | Always the last letter โ always the final layer |