Update VS2N MongoDB schemas authored by Hammouda Elbez's avatar Hammouda Elbez
...@@ -185,7 +185,7 @@ In this collection, we collect every neuron membrane potential activity in the n ...@@ -185,7 +185,7 @@ In this collection, we collect every neuron membrane potential activity in the n
**Collection content** :<br> **Collection content** :<br>
In this collection, we collect every synapse weight activity in the network during training. The collection contains information about: In this collection, we collect every synapse weight activity in the network during training. The collection contains information about:
- Time of synapse update (s). - Time of synapse update (s).
- Source neuron id. - Source id (depth).
- Destination neuron id. - Destination neuron id.
- Synapse weight value. - Synapse weight value.
- Synapse index coordinates (for heatmap construction). - Synapse index coordinates (for heatmap construction).
...@@ -195,7 +195,7 @@ In this collection, we collect every synapse weight activity in the network duri ...@@ -195,7 +195,7 @@ In this collection, we collect every synapse weight activity in the network duri
"properties" : { "properties" : {
"_id" : { "bsonType": "objectId" }, // id "_id" : { "bsonType": "objectId" }, // id
"T" : { "bsonType": "double" }, // time of synapse update "T" : { "bsonType": "double" }, // time of synapse update
"C" : { "bsonType": "int" }, // source neuron id "C" : { "bsonType": "int" }, // source id
"To" : { "bsonType": "int" }, // destination neuron id "To" : { "bsonType": "int" }, // destination neuron id
"V" : { "bsonType": "double" }, // weight value "V" : { "bsonType": "double" }, // weight value
"L" : { "bsonType": "string" }, // layer name "L" : { "bsonType": "string" }, // layer name
...@@ -213,7 +213,7 @@ In this collection, we collect every synapse weight activity in the network duri ...@@ -213,7 +213,7 @@ In this collection, we collect every synapse weight activity in the network duri
{ {
"_id" : ObjectId("6015ffefdec986560a078796"), "_id" : ObjectId("6015ffefdec986560a078796"),
"T" : 0.0, "T" : 0.0,
"C" : 333, "C" : 2,
"To" : 0, "To" : 0,
"V" : 0.649092, "V" : 0.649092,
"L" : "Layer1", "L" : "Layer1",
... ...
......