Skip to content

Commit

Permalink
Delete old comments related to IN and OUT layers in some models
Browse files Browse the repository at this point in the history
  • Loading branch information
dancasmor committed Feb 13, 2023
1 parent 148fe67 commit 03780e9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 14 deletions.
4 changes: 0 additions & 4 deletions sPyMem/CA3_content_addressable/CA3_content_addressable.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,6 @@ class Memory:
:vartype contSize: int
:ivar sim: object in charge of handling the simulation, initial value: sim
:vartype sim: simulation object (spynnaker8 for spynnaker)
:ivar ILayer: input population to the memory model, initial value: ILayer
:vartype ILayer: population
:ivar CA3cueCueRecallLayer: CA3cueCueRecall population
:vartype CA3cueCueRecallLayer: population
:ivar CA3cueContRecallLayer: CA3cueContRecall population
Expand All @@ -81,8 +79,6 @@ class Memory:
:vartype CA3mergeCueLayer: population
:ivar CA3mergeContLayer: CA3mergeCont population
:vartype CA3mergeContLayer: population
:ivar OLayer: output population of the memory model, initial value: OLayer
:vartype OLayer: population
:ivar configFilePath: path + filename to the config file of internal model parameters, initial value: configFilePath or internal path to default config file
:vartype configFilePath: str
:ivar initCA3CueContW: list of initial weight to use in CA3cue-CA3cont synapse (initial memory content); format of each element of the list: (source_neuron_id, destination_neuron_id, initial_weight, delay)
Expand Down
4 changes: 0 additions & 4 deletions sPyMem/ca3/CA3.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,10 @@ class Memory:
:vartype contSize: int
:ivar sim: object in charge of handling the simulation, initial value: sim
:vartype sim: simulation object (spynnaker8 for spynnaker)
:ivar ILayer: input population to the memory model, initial value: ILayer
:vartype ILayer: population
:ivar CA3cueLayer: CA3cue population
:vartype CA3cueLayer: population
:ivar CA3contLayer: CA3cont population
:vartype CA3contLayer: population
:ivar OLayer: output population of the memory model, initial value: OLayer
:vartype OLayer: population
:ivar configFilePath: path + filename to the config file of internal model parameters, initial value: configFilePath or internal path to default config file
:vartype configFilePath: str
:ivar initCA3W: list of initial weight to use in CA3 synapse (initial memory content); format of each element of the list: (source_neuron_id, destination_neuron_id, initial_weight, delay), initial value: None or input class parameter
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

import math
import json
from sPyMem.hippocampus_bioinspired_dg_ca1.ca1 import CA1
from sPyMem.hippocampus_bioinspired_dg_ca1.dg import DG
from ca1 import CA1
from dg import DG
import os


Expand Down Expand Up @@ -48,8 +48,6 @@ class Memory:
:vartype contSize: int
:ivar sim: object in charge of handling the simulation, initial value: sim
:vartype sim: simulation object (spynnaker8 for spynnaker)
:ivar ILayer: input population to the memory model, initial value: ILayer
:vartype ILayer: population
:ivar CA3cueLayer: CA3cue population
:vartype CA3cueLayer: population
:ivar CA3contLayer: CA3cont population
Expand All @@ -58,8 +56,6 @@ class Memory:
:vartype DG: DG (contains DGLayer and IL-DGL and DGL-CA3cueL synapses)
:ivar CA1: CA1 object
:vartype CA1: CA1 (contains CA1Layer and CA3cueL-CA1L and CA1L-OL synapses)
:ivar OLayer: output population of the memory model, initial value: OLayer
:vartype OLayer: population
:ivar configFilePath: path + filename to the config file of internal model parameters, initial value: configFilePath or internal path to default config file
:vartype configFilePath: str
:ivar initCA3W: list of initial weight to use in CA3 synapse (initial memory content); format of each element of the list: (source_neuron_id, destination_neuron_id, initial_weight, delay), initial value: None or input class parameter
Expand Down

0 comments on commit 03780e9

Please sign in to comment.