varie
This commit is contained in:
+27
-20
@@ -71,6 +71,8 @@ Qui comprendiamo:
|
|||||||
|
|
||||||
- **SpikeTrainTraces**: sono le tracce che consentono al neurone di far partire il Tuning neuronale, quando e' lontano da uno spike-train, ovvero e' in riposo.
|
- **SpikeTrainTraces**: sono le tracce che consentono al neurone di far partire il Tuning neuronale, quando e' lontano da uno spike-train, ovvero e' in riposo.
|
||||||
|
|
||||||
|
- **RefractorySoma**: tracce di refractory
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
```Gen
|
```Gen
|
||||||
@@ -95,6 +97,8 @@ container: SOMA
|
|||||||
|
|
||||||
- Ca2+
|
- Ca2+
|
||||||
|
|
||||||
|
- RefractorySoma
|
||||||
|
|
||||||
tub_intricated:
|
tub_intricated:
|
||||||
- SpikeTrainTraces ( contained_in: DAY-N )
|
- SpikeTrainTraces ( contained_in: DAY-N )
|
||||||
```
|
```
|
||||||
@@ -115,13 +119,13 @@ episode: CheckVDB
|
|||||||
rf: ( active: 60x )
|
rf: ( active: 60x )
|
||||||
|
|
||||||
condition: (VDB fullness ) AND NOT ApCtx
|
condition: (VDB fullness ) AND NOT ApCtx
|
||||||
out_context: VDBMax
|
out_context: VDBMaxCtx
|
||||||
|
|
||||||
condition: ( VDB mediumness ) AND NOT ApCtx
|
condition: ( VDB mediumness ) AND NOT ApCtx
|
||||||
out_context: VDBMedium
|
out_context: VDBMediumCtx
|
||||||
|
|
||||||
condition: ( VDB emptiness ) AND NOT ApCtx
|
condition: ( VDB emptiness ) AND NOT ApCtx
|
||||||
out_context: VDBLow
|
out_context: VDBLowCtx
|
||||||
```
|
```
|
||||||
|
|
||||||
#### SomaSpike: Episode
|
#### SomaSpike: Episode
|
||||||
@@ -132,47 +136,50 @@ Qui siamo nella fase effettiva di spike, non refractory che viene dopo. Fa da co
|
|||||||
episode: SomaSpike
|
episode: SomaSpike
|
||||||
contained_by: SOMA
|
contained_by: SOMA
|
||||||
|
|
||||||
context: Fixed
|
context: fixed
|
||||||
rf: ( active: 60x )
|
rf: ( active: 60x )
|
||||||
|
|
||||||
condition: ( Na fullness ) AND ( NOT SomaRefractory )
|
condition: ( Na fullness ) AND ( NOT SomaRefractoryCtx )
|
||||||
out_context: ApCtx
|
out_context: ApCtx
|
||||||
out_context: bApCtx
|
out_context: bApCtx
|
||||||
```
|
```
|
||||||
|
|
||||||
#### APInteracting: Interacting
|
#### ApBeh: Interacting
|
||||||
|
|
||||||
Durante la fase effettiva di spike, eliminiamo Na accumulati e riempiamo per fase di refractory
|
Durante la fase effettiva di spike, eliminiamo Na accumulati, riempiamo RefractorySoma per fase di refractory e riempiamo Ca2+ per le tracce medio termine di potenziamento/depotenziamento.
|
||||||
|
|
||||||
```Gen
|
```Gen
|
||||||
interacting: APInteracting
|
interacting: ApBeh
|
||||||
contained_by: SOMA
|
contained_by: SOMA
|
||||||
|
|
||||||
context: ApCtx
|
context: ApCtx
|
||||||
rf: ( active: 8x )
|
rf: ( active: 8x )
|
||||||
|
|
||||||
hypothesis: NOT Na empty
|
hypothesis: NOT Na empty
|
||||||
action: [ decrease Na ]
|
action: [ decrease Na ]
|
||||||
trace:
|
trace:
|
||||||
|
|
||||||
hypothesis: NOT RefractorySoma full
|
hypothesis: NOT RefractorySoma full
|
||||||
action: [ increase RefractorySoma ]
|
action: [ increase RefractorySoma ]
|
||||||
trace:
|
trace:
|
||||||
|
|
||||||
|
hypothesis: NOT Ca2+ full
|
||||||
|
action: [ increase Ca2+ ]
|
||||||
|
trace:
|
||||||
```
|
```
|
||||||
|
|
||||||
#### ClearRefractorySoma: Interacting
|
#### RefractoryBeh: Interacting
|
||||||
|
|
||||||
```Gen
|
```Gen
|
||||||
interacting: ClearRefractorySoma
|
interacting: RefractoryBeh
|
||||||
contained_by: SOMA
|
contained_by: SOMA
|
||||||
|
|
||||||
context: Fixed
|
context: Fixed
|
||||||
rf: ( active: 8x )
|
rf: ( active: 8x )
|
||||||
|
|
||||||
hypothesis: NOT RefractorySoma empty
|
hypothesis: NOT RefractorySoma empty
|
||||||
action: [ decrease RefractorySoma ]
|
action: [ decrease RefractorySoma ]
|
||||||
trace:
|
trace:
|
||||||
```
|
```
|
||||||
|
|
||||||
### sec: SOMA
|
### sec: SOMA
|
||||||
@@ -247,7 +254,7 @@ Se metto il controllo sulla (NOT Ready fullness) il VGSC puo' far entrare un num
|
|||||||
interacting: NaEnterH
|
interacting: NaEnterH
|
||||||
contained_by: VGSC-H-SOMA
|
contained_by: VGSC-H-SOMA
|
||||||
|
|
||||||
context: VDBMax AND ( NOT RefractoryH )
|
context: VDBMaxCtx AND ( NOT RefractoryH )
|
||||||
rf: ( active: 1x )
|
rf: ( active: 1x )
|
||||||
|
|
||||||
hypothesis: ( NOT Na fullness ) AND ( NOT ReadyH fullness )
|
hypothesis: ( NOT Na fullness ) AND ( NOT ReadyH fullness )
|
||||||
|
|||||||
Reference in New Issue
Block a user