| ... | @@ -79,7 +79,11 @@ The second one contains optional information, which is collected if there was a |
... | @@ -79,7 +79,11 @@ The second one contains optional information, which is collected if there was a |
|
|
"properties" : {
|
|
"properties" : {
|
|
|
"_id" : { "bsonType": "objectId" }, // id
|
|
"_id" : { "bsonType": "objectId" }, // id
|
|
|
"MaxS" : { "bsonType": "string" }, // network accuracy (Max Spike)
|
|
"MaxS" : { "bsonType": "string" }, // network accuracy (Max Spike)
|
|
|
"NLabel" : { "<Array of JSON>" }, // neurons labels
|
|
"NLabel" : [{ // neurons labels
|
|
|
|
"L": { "bsonType": "string" },
|
|
|
|
"N": { "bsonType": "int" },
|
|
|
|
"Label": { "bsonType": "int" }
|
|
|
|
}]
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
```
|
|
```
|
| ... | @@ -192,7 +196,8 @@ In this collection, we collect every synapse weight activity in the network duri |
... | @@ -192,7 +196,8 @@ In this collection, we collect every synapse weight activity in the network duri |
|
|
"V" : { "bsonType": "double" }, // weight value
|
|
"V" : { "bsonType": "double" }, // weight value
|
|
|
"index" : { // index coordinates
|
|
"index" : { // index coordinates
|
|
|
"x": { "bsonType": "int" },
|
|
"x": { "bsonType": "int" },
|
|
|
"y": { "bsonType": "int" }}
|
|
"y": { "bsonType": "int" }
|
|
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
```
|
|
```
|
| ... | | ... | |