NNL

1 program Added 2026-03-13T01:33:35Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled Evidence Report issue View issues
Aliases: Neural Network Language
Provenance: commit ff56c05c59 · authored 2026-03-13T02:34:45+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

NV (0.39)Nyx (0.31)NED (0.31)FunL (0.29)Io (0.28)

LLM-contributed programs

Simple Neural Network

Provenance: commit ff56c05c59 · authored 2026-03-13T02:34:45+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
code.nn · license: MIT · added: 2026-03-13T01:33:35Z
R (
	L1 [
		N11 {
			input: [ValueA: 1],
			output: [N21, N22, N23],
			bias: 0,
			activation: identity
		},
		N12 {
			input: [ValueB: 1],
			output: [N22, N23],
			bias: 0.25
		}
	],
	L2 [
		N21 {
			input: [N11: 0.5],
			output: [N3],
			activation: binary
		},
		N22 {
			input: [N11: 0.7, N12: 0.14],
			output: [N3],
			bias: 0.28,
			activation: sigmoid
		},
		N23 {
			input: [N11: 1, N12: 1],
			output: [N3],
			activation: identity,
			bias: 0
		}
	],
	L3 [
		N3 {
			input: [N21: 0.333, N22: 0.333, N23: 0.33],
			activation: identity,
			bias: 0.1,
			output: [Output]
		}
	]
)

ValueA=3
ValueB=6

> all
> L2
> Output

-> R

Contribute — propose a file extension

Tell us where to find evidence about NNL (mapped to pl/nnl). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/NNL/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Nndstojmp nntp →