expansion_template
This commit is contained in:
+70
-21
@@ -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
|
||||
- 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
|
||||
container: BEH-WTA
|
||||
|
||||
expansion:
|
||||
|
||||
elements:
|
||||
NEU-001: 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-002: AST.md
|
||||
|
||||
incoming:
|
||||
INH-001 # type 1
|
||||
INH-002 # type 2
|
||||
incoming:
|
||||
- INC-001
|
||||
- INC-002
|
||||
|
||||
outgoing:
|
||||
EXH-001 # type 1
|
||||
EXH-002 # type 2
|
||||
outgoing:
|
||||
- OUT-001
|
||||
- OUT-002
|
||||
|
||||
expansion:
|
||||
|
||||
AREA-001:
|
||||
- NEU-001.AXO -[excites]-> NEU-003.BD-001 ~AST-001
|
||||
expansion_template:
|
||||
- EXH-001: N.AXO -[exhites]-> N.BD-001 ~AST
|
||||
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
|
||||
|
||||
circuit:
|
||||
AREA-001:
|
||||
- NEU-001 -[EXH-001]-> NEU-003 ~AST-001
|
||||
- NEU-001 -[INH-001]-> NEU-003 ~AST-002
|
||||
|
||||
AREA-002:
|
||||
- NEU-003.AXO -[excites]-> EXH-001 ~@
|
||||
modulated_by: TUN-WTA-PRE-POST from TUN-WTA
|
||||
|
||||
- NEU-004.AXO -[excites]-> EXH-002 ~@
|
||||
modulated_by: TUN-WTA-PRE-POST from TUN-WTA
|
||||
- NEU-003 -[EXH-002]-> NEU-003 ~AST-001
|
||||
- NEU-004 -[EXH-003]-> NEU-003 ~AST-002
|
||||
|
||||
AREA-003:
|
||||
- INH-001 -[inhibits]-> NEU-001.SOMA ~@
|
||||
modulated_by: TUN-WTA-PRE-SOMA from TUN-WTA
|
||||
|
||||
- INH-002 -[inhibits]-> NEU-003.SOMA ~@
|
||||
modulated_by: TUN-WTA-PRE-SOMA from TUN-WTA
|
||||
- INC-001 -[INH-001]-> NEU-001 ~@
|
||||
- OUT-002 -[EXH-001]-> NEU-003 ~@
|
||||
```
|
||||
|
||||
### excitory: Expansion
|
||||
|
||||
```Gen
|
||||
expansion: excitory
|
||||
contained_by: BEH-WTA
|
||||
|
||||
N.AXO -[excites]-> N.BD~@ ~AST
|
||||
|
||||
|
||||
```
|
||||
|
||||
### inhibitory: Expansion
|
||||
|
||||
```Gen
|
||||
expansion: inhibitory
|
||||
contained_by: BEH-WTA
|
||||
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user