ash12321 commited on
Commit
5013649
·
verified ·
1 Parent(s): 2bf4ec2

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +58 -0
config.json ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_name": "Residual Convolutional Autoencoder Ensemble",
3
+ "version": "v32",
4
+ "architecture": {
5
+ "type": "Convolutional Autoencoder",
6
+ "encoder_layers": 6,
7
+ "decoder_layers": 6,
8
+ "residual_blocks": true,
9
+ "input_size": [
10
+ 3,
11
+ 256,
12
+ 256
13
+ ],
14
+ "output_size": [
15
+ 3,
16
+ 256,
17
+ 256
18
+ ]
19
+ },
20
+ "models": {
21
+ "model_a": {
22
+ "latent_dim": 512,
23
+ "dropout": 0.15,
24
+ "parameters": "~50M",
25
+ "val_loss": 0.025486
26
+ },
27
+ "model_b": {
28
+ "latent_dim": 768,
29
+ "dropout": 0.2,
30
+ "parameters": "~65M",
31
+ "val_loss": 0.025033
32
+ }
33
+ },
34
+ "training": {
35
+ "loss_function": "MSE",
36
+ "optimizer": "AdamW",
37
+ "image_range": "[-1, 1]",
38
+ "input_resolution": "256x256",
39
+ "normalization": "x * 2 - 1"
40
+ },
41
+ "usage": {
42
+ "preprocessing": "Resize to 256x256, normalize to [-1, 1]",
43
+ "input_format": "RGB image tensor",
44
+ "output_format": "Reconstructed image + latent code"
45
+ },
46
+ "limitations": {
47
+ "note": "Model functions as image enhancer/denoiser, not anomaly detector",
48
+ "not_suitable_for": [
49
+ "Fake image detection",
50
+ "Anomaly detection with modern AI images"
51
+ ],
52
+ "suitable_for": [
53
+ "Image denoising",
54
+ "Feature extraction",
55
+ "Image reconstruction"
56
+ ]
57
+ }
58
+ }