Add files via upload

This commit is contained in:
David Rotermund 2023-01-15 14:11:38 +01:00 committed by GitHub
parent 7b2411de9d
commit 01a11ee541
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 120 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,4 @@
{
"data_path": "./DATA_CIFAR10/",
"data_mode": "CIFAR10"
}

View file

@ -0,0 +1,19 @@
{
"epoch_id_max": 200,
"batch_size": 24,
"stage_id": 0,
"simulation_id": 0,
"learning_parameters": {
"loss_mode": 1, // X-Entropy
"number_of_batches_for_one_update": 20,
"learning_rate_gamma_w": 0.001,
"lr_scheduler_patience_w": -1,
"adapt_learning_rate_after_minibatch": false,
"w_trainable": [
true
]
},
"augmentation": {},
"image_statistics": {},
"approximation_setting": {}
}

Binary file not shown.

View file

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

Binary file not shown.