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