Delete network.json

This commit is contained in:
David Rotermund 2023-01-15 03:01:43 +01:00 committed by GitHub
parent 5bde67997b
commit 138580f1f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,91 +0,0 @@
{
"network_structure": {
"number_of_output_neurons": 10,
"layer_type": [
"SbS",
"MAX POOLING",
"SbS",
"MAX POOLING",
"SbS",
"SbS"
],
"strides": [
[
1,
1
], // "SbS"
[
2,
2
], // POOLING
[
1,
1
], // "SbS"
[
2,
2
], // POOLING
[
1,
1
], // "SbS"
[
1,
1
] // "SbS"
],
"forward_neuron_numbers": [
[
1,
32
], // "SbS"
[
32,
32
], // POOLING
[
32,
64
], // "SbS"
[
64,
64
], // POOLING
[
64,
96
], // "SbS"
[
96,
10
] // "SbS"
],
"forward_kernel_size": [
[
5,
5
], // "SbS"
[
2,
2
], // POOLING
[
5,
5
], // "SbS"
[
2,
2
], // POOLING
[
3,
3
], // "SbS"
[
1,
1
] // "SbS"
]
}
}