Changes
Page history
Added Label collection schema to documentation
authored
Apr 29, 2021
by
Elbez Hammouda
Show whitespace changes
Inline
Side-by-side
VS2N-MongoDB-schemas.md
View page @
8727e2ec
...
...
@@ -207,3 +207,37 @@ In this collection, we collect every synapse weight activity in the network duri
```
<div
align=
"center"
>
Example
</div>
<br>
## 5- Labels activity schemas (optional):
**Collection name**
: labels
<br><br>
**Collection content**
:
<br>
In this collection, we collect every input label in the network during training (if exist). The collection contains information about:
-
Time of input introduction to the network (μs).
-
Label value.
-
Value of total inputs already introduced.
{ "_id" : ObjectId("6015bb74ef223d473e4ec000"), "L" : 3, "T" : 6225, "G" : 11 }
```
json
{
"properties"
:
{
"_id"
:
{
"bsonType"
:
"objectId"
},
//
id
"T"
:
{
"bsonType"
:
"NumberLong"
},
//
time
of
input
introduction
to
the
network
"L"
:
{
"bsonType"
:
"int"
},
//
label
value
"G"
:
{
"bsonType"
:
"int"
},
//
value
of
total
inputs
already
introduced
}
```
<div
align=
"center"
>
Labels activity schemas
</div>
<br>
```
json
{
"_id"
:
ObjectId(
"6015bb74ef223d473e4ec000"
)
,
"T"
:
NumberLong(
62250000
)
,
"L"
:
3
,
"G"
:
11
}
```
<div
align=
"center"
>
Example
</div>
<br>
\ No newline at end of file