Upload 2 files
Browse files- config.json +88 -0
- model.weights.h5 +3 -0
config.json
ADDED
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"module": "zea.models.diffusion",
|
3 |
+
"class_name": "DiffusionModel",
|
4 |
+
"config": {
|
5 |
+
"name": "diffusion_model",
|
6 |
+
"trainable": true,
|
7 |
+
"dtype": {
|
8 |
+
"module": "keras",
|
9 |
+
"class_name": "DTypePolicy",
|
10 |
+
"config": {
|
11 |
+
"name": "float32"
|
12 |
+
},
|
13 |
+
"registered_name": null
|
14 |
+
},
|
15 |
+
"input_shape": [
|
16 |
+
256,
|
17 |
+
256,
|
18 |
+
1
|
19 |
+
],
|
20 |
+
"input_range": [
|
21 |
+
-1,
|
22 |
+
1
|
23 |
+
],
|
24 |
+
"min_signal_rate": 0.02,
|
25 |
+
"max_signal_rate": 0.95,
|
26 |
+
"network_name": "unet_time_conditional",
|
27 |
+
"network_kwargs": {
|
28 |
+
"block_depth": 2,
|
29 |
+
"widths": [32, 64, 96, 128]
|
30 |
+
}
|
31 |
+
},
|
32 |
+
"registered_name": "DiffusionModel",
|
33 |
+
"build_config": {
|
34 |
+
"input_shape": [
|
35 |
+
[
|
36 |
+
1,
|
37 |
+
256,
|
38 |
+
256,
|
39 |
+
1
|
40 |
+
],
|
41 |
+
[
|
42 |
+
1,
|
43 |
+
1,
|
44 |
+
1,
|
45 |
+
1
|
46 |
+
]
|
47 |
+
]
|
48 |
+
},
|
49 |
+
"compile_config": {
|
50 |
+
"optimizer": {
|
51 |
+
"module": "keras.optimizers",
|
52 |
+
"class_name": "AdamW",
|
53 |
+
"config": {
|
54 |
+
"name": "adamw",
|
55 |
+
"learning_rate": 9.999999747378752e-06,
|
56 |
+
"weight_decay": 1e-05,
|
57 |
+
"clipnorm": null,
|
58 |
+
"global_clipnorm": null,
|
59 |
+
"clipvalue": null,
|
60 |
+
"use_ema": false,
|
61 |
+
"ema_momentum": 0.99,
|
62 |
+
"ema_overwrite_frequency": null,
|
63 |
+
"loss_scale_factor": null,
|
64 |
+
"gradient_accumulation_steps": null,
|
65 |
+
"beta_1": 0.9,
|
66 |
+
"beta_2": 0.999,
|
67 |
+
"epsilon": 1e-07,
|
68 |
+
"amsgrad": false
|
69 |
+
},
|
70 |
+
"registered_name": null
|
71 |
+
},
|
72 |
+
"loss": {
|
73 |
+
"module": "keras.losses",
|
74 |
+
"class_name": "MeanSquaredError",
|
75 |
+
"config": {
|
76 |
+
"name": "mean_squared_error",
|
77 |
+
"reduction": "sum_over_batch_size"
|
78 |
+
},
|
79 |
+
"registered_name": null
|
80 |
+
},
|
81 |
+
"loss_weights": null,
|
82 |
+
"metrics": null,
|
83 |
+
"weighted_metrics": null,
|
84 |
+
"run_eagerly": false,
|
85 |
+
"steps_per_execution": 1,
|
86 |
+
"jit_compile": true
|
87 |
+
}
|
88 |
+
}
|
model.weights.h5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3ff5a413ee15c139115fe25e5998129910c5fbd99c63fc07359e9ba7e7aa09ee
|
3 |
+
size 119740536
|