expansion_template

This commit is contained in:
2026-03-11 17:48:32 +01:00
parent 4628549fa2
commit 2cd39fdd82
3 changed files with 76 additions and 25 deletions
+70 -21
View File
@@ -19,7 +19,34 @@ In questo modo abbiamo allargato il concetto di espansione. Problemi da risolver
- INH e EXH ora espongono il modulo WTA ad un'area cerebrale dove viene specificato l'intricazione fra moduli - INH e EXH ora espongono il modulo WTA ad un'area cerebrale dove viene specificato l'intricazione fra moduli
- posso pensare di produrre il circuito in ambiente visuale tipo DrawIO, e avere un parser che me lo trasforma in questa sintassi. - posso pensare di produrre il circuito in ambiente visuale tipo DrawIO, e avere un parser che me lo trasforma in questa sintassi.
---
**How intrication_type resolves in circuit**:
When parser sees:
NEU-001 -[EXH-001]-> NEU-003 ~AST-001
It looks up `EXH-001`:
EXH-001: N.AXO -[excites]-> N.BD-001
modulated_by: TUN-WTA-PRE-POST from TUN-WTA
And substitutes `N` with the actual neurons:
presynaptic: NEU-001.AXO
postsynaptic: NEU-003.BD-001
type: excitatory
astrocyte: AST-001
modulated_by: TUN-WTA.TUN-WTA-PRE-POST
---
```Gen ```Gen
container: BEH-WTA
expansion:
elements: elements:
NEU-001: N.md NEU-001: N.md
NEU-002: N.md NEU-002: N.md
@@ -28,34 +55,56 @@ In questo modo abbiamo allargato il concetto di espansione. Problemi da risolver
AST-001: AST.md AST-001: AST.md
AST-002: AST.md AST-002: AST.md
incoming: incoming:
INH-001 # type 1 - INC-001
INH-002 # type 2 - INC-002
outgoing: outgoing:
EXH-001 # type 1 - OUT-001
EXH-002 # type 2 - OUT-002
expansion: expansion_template:
- EXH-001: N.AXO -[exhites]-> N.BD-001 ~AST
AREA-001:
- NEU-001.AXO -[excites]-> NEU-003.BD-001 ~AST-001
modulated_by: TUN-WTA-PRE-POST from TUN-WTA modulated_by: TUN-WTA-PRE-POST from TUN-WTA
- NEU-001.AXO -[inhibits]-> NEU-003.SOMA ~AST-002 - EXH-002: N.AXO -[exhites]-> N.BD-002 ~AST
modulated_by: TUN-WTA-PRE-POST from TUN-WTA
- EXH-003: N.AXO -[exhites]-> N.BD-003 ~AST
modulated_by: TUN-WTA-PRE-POST from TUN-WTA
- INH-001: N.AXO -[inhibits]-> N.SOMA ~AST
modulated_by: TUN-WTA-PRE-SOMA from TUN-WTA modulated_by: TUN-WTA-PRE-SOMA from TUN-WTA
circuit:
AREA-001:
- NEU-001 -[EXH-001]-> NEU-003 ~AST-001
- NEU-001 -[INH-001]-> NEU-003 ~AST-002
AREA-002: AREA-002:
- NEU-003.AXO -[excites]-> EXH-001 ~@ - NEU-003 -[EXH-002]-> NEU-003 ~AST-001
modulated_by: TUN-WTA-PRE-POST from TUN-WTA - NEU-004 -[EXH-003]-> NEU-003 ~AST-002
- NEU-004.AXO -[excites]-> EXH-002 ~@
modulated_by: TUN-WTA-PRE-POST from TUN-WTA
AREA-003: AREA-003:
- INH-001 -[inhibits]-> NEU-001.SOMA ~@ - INC-001 -[INH-001]-> NEU-001 ~@
modulated_by: TUN-WTA-PRE-SOMA from TUN-WTA - OUT-002 -[EXH-001]-> NEU-003 ~@
```
- INH-002 -[inhibits]-> NEU-003.SOMA ~@
modulated_by: TUN-WTA-PRE-SOMA from TUN-WTA ### excitory: Expansion
```Gen
expansion: excitory
contained_by: BEH-WTA
N.AXO -[excites]-> N.BD~@ ~AST
```
### inhibitory: Expansion
```Gen
expansion: inhibitory
contained_by: BEH-WTA
``` ```
+5 -3
View File
@@ -12,6 +12,8 @@ modulator: TUN-WTA
### TUN-WTA-PRE-POST: Modulator ### TUN-WTA-PRE-POST: Modulator
IL TUN e' fatto sull'expansion_template. Anche se poi i collegamenti sono fatti specificamente fra PRE, POST e AST.
L'associazione PRE<->POST fatta con SYN dall'interprete/enliver, e' possibile perche' in POST e PRE si fa riferimento a NT che vengono immessi in SYN. Ovviamente tutto concettuale, ma in enliving il concettuale viene attualizzato. L'associazione PRE<->POST fatta con SYN dall'interprete/enliver, e' possibile perche' in POST e PRE si fa riferimento a NT che vengono immessi in SYN. Ovviamente tutto concettuale, ma in enliving il concettuale viene attualizzato.
Quindi TUN-WTA-PRE-POST deve lavorare per ogni dichiarazione, casomai privilegiando alcune possibilita' che sono piu' impellenti di altre. Quindi TUN-WTA-PRE-POST deve lavorare per ogni dichiarazione, casomai privilegiando alcune possibilita' che sono piu' impellenti di altre.
@@ -22,9 +24,9 @@ modulator: TUN-WTA-PRE-POST
contained_by: TUN-WTA contained_by: TUN-WTA
modulates: modulates:
- AST/expansion/BEH-SYN - BEH-WTA/expansion_template/EXH-001
- N/AXO/expansion/BEH-PRE - BEH-WTA/expansion_template/EXH-002
- N/BD/expansion/BEH-POST - BEH-WTA/expansion_template/EXH-003
tub_modulation: tub_modulation:
- pre - pre
+1 -1
View File
@@ -10,5 +10,5 @@ comprehension: WTA
TUN-WTA.md TUN-WTA.md
expansion: expansion:
BEH-WTA BEH-WTA ( 1x )A
``` ```