logasja commited on
Commit
bcde7f1
·
verified ·
1 Parent(s): 992feab

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +79 -9
README.md CHANGED
@@ -1,17 +1,87 @@
1
-
2
  ---
3
  library_name: keras
4
  ---
 
 
 
5
 
6
- This model has been uploaded using the Keras library and can be used with JAX,
7
- TensorFlow, and PyTorch backends.
8
 
9
- This model card has been generated automatically and should be completed by the
10
- model author.
11
- See [Model Cards documentation](https://huggingface.co/docs/hub/model-cards) for
12
- more information.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
 
14
- For more details about the model architecture, check out
15
- [config.json](./config.json).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
 
17
  ![](./assets/summary_plot.png)
 
 
1
  ---
2
  library_name: keras
3
  ---
4
+ <Gallery />
5
+
6
+ Training logs [here](https://wandb.ai/spuds/auramask/runs/4bccc51405daf9919fb4ec5b5998e2ea)
7
 
8
+ # Model Description
9
+ This model uses a modified vnet for 2D input/output implemented [here](https://github.com/logasja/keras3-unets) with the following configuration.
10
 
11
+ ```json
12
+ {
13
+ "activation": "ReLU",
14
+ "batch_norm": false,
15
+ "filter_num": [
16
+ 128,
17
+ 256,
18
+ 512,
19
+ 1024,
20
+ 1024
21
+ ],
22
+ "n_labels": 3,
23
+ "output_activation": "tanh",
24
+ "pool": false,
25
+ "res_num_ini": 1,
26
+ "res_num_max": 3,
27
+ "unpool": false
28
+ }
29
+ ```
30
 
31
+ ```json
32
+ {
33
+ "alpha": 0.0001,
34
+ "batch": 32,
35
+ "epochs": 500,
36
+ "epsilon": 1,
37
+ "input": "(256, 256)",
38
+ "losses": {
39
+ "FEAT_VGG-Face": {
40
+ "d": "cosine_similarity",
41
+ "f": "VGG-Face",
42
+ "name": "FEAT_VGG-Face",
43
+ "reduction": "sum_over_batch_size",
44
+ "threshold": 0.68,
45
+ "weight": 0.1
46
+ },
47
+ "IQASSIMC": {
48
+ "lower_better": false,
49
+ "name": "IQASSIMC",
50
+ "reduction": "sum_over_batch_size",
51
+ "weight": 0.5
52
+ },
53
+ "TopIQ": {
54
+ "full_ref": true,
55
+ "lower_better": false,
56
+ "name": "TopIQ",
57
+ "reduction": "sum_over_batch_size",
58
+ "score_range": "~0, ~1",
59
+ "weight": 0.5
60
+ }
61
+ },
62
+ "mixed_precision": true,
63
+ "optimizer": {
64
+ "amsgrad": false,
65
+ "beta_1": 0.9,
66
+ "beta_2": 0.999,
67
+ "clipnorm": null,
68
+ "clipvalue": null,
69
+ "ema_momentum": 0.99,
70
+ "ema_overwrite_frequency": null,
71
+ "epsilon": 1e-07,
72
+ "global_clipnorm": null,
73
+ "gradient_accumulation_steps": null,
74
+ "learning_rate": 9.999999747378752e-05,
75
+ "loss_scale_factor": null,
76
+ "name": "adamw",
77
+ "use_ema": false,
78
+ "weight_decay": 0.004
79
+ },
80
+ "seed": "BIIIIIGSTRETCH",
81
+ "testing": 0.01,
82
+ "training": 0.99
83
+ }
84
+ ```
85
 
86
+ ## Model Architecture Plot
87
  ![](./assets/summary_plot.png)