ash12321 commited on
Commit
1111f68
·
verified ·
1 Parent(s): a925834

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +33 -0
config.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "ResidualConvAutoencoder",
3
+ "architecture": {
4
+ "encoder_stages": 5,
5
+ "decoder_stages": 5,
6
+ "latent_dim": 512,
7
+ "input_size": [
8
+ 128,
9
+ 128,
10
+ 3
11
+ ],
12
+ "channels": [
13
+ 64,
14
+ 128,
15
+ 256,
16
+ 512,
17
+ 512
18
+ ]
19
+ },
20
+ "training": {
21
+ "dataset": "CIFAR-10",
22
+ "batch_size": 1024,
23
+ "optimizer": "AdamW",
24
+ "learning_rate": 0.001,
25
+ "epochs": 100,
26
+ "loss_function": "MSE"
27
+ },
28
+ "performance": {
29
+ "test_loss": 0.00429,
30
+ "validation_loss": 0.004294,
31
+ "parameters": 34849667
32
+ }
33
+ }