gihakkk commited on
Commit
ccfb422
1 Parent(s): b175759

Upload 2 files

Browse files
Files changed (2) hide show
  1. autoencoder_model.keras +1 -1
  2. config.json +87 -87
autoencoder_model.keras CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:839895b2ce339e984ea79987e563d9f66401cba4b6fe4ff83af487ff8afad4d6
3
  size 4065103
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:21659ac6c2806df4f0f58a0f2691de02ffb0bfdad64e6e5ee1044acccce6a309
3
  size 4065103
config.json CHANGED
@@ -1,88 +1,88 @@
1
- {
2
- "input_shape": [
3
- 152,
4
- 152,
5
- 3
6
- ],
7
- "encoder": {
8
- "conv_layers": [
9
- {
10
- "filters": 32,
11
- "kernel_size": [
12
- 3,
13
- 3
14
- ],
15
- "activation": "relu"
16
- },
17
- {
18
- "filters": 64,
19
- "kernel_size": [
20
- 3,
21
- 3
22
- ],
23
- "activation": "relu"
24
- },
25
- {
26
- "filters": 128,
27
- "kernel_size": [
28
- 3,
29
- 3
30
- ],
31
- "activation": "relu"
32
- }
33
- ],
34
- "pooling": {
35
- "size": [
36
- 2,
37
- 2
38
- ]
39
- }
40
- },
41
- "decoder": {
42
- "conv_layers": [
43
- {
44
- "filters": 128,
45
- "kernel_size": [
46
- 3,
47
- 3
48
- ],
49
- "activation": "relu"
50
- },
51
- {
52
- "filters": 64,
53
- "kernel_size": [
54
- 3,
55
- 3
56
- ],
57
- "activation": "relu"
58
- },
59
- {
60
- "filters": 32,
61
- "kernel_size": [
62
- 3,
63
- 3
64
- ],
65
- "activation": "relu"
66
- }
67
- ],
68
- "upsampling": {
69
- "size": [
70
- 2,
71
- 2
72
- ]
73
- },
74
- "output_layer": {
75
- "filters": 3,
76
- "kernel_size": [
77
- 3,
78
- 3
79
- ],
80
- "activation": "sigmoid"
81
- }
82
- },
83
- "training": {
84
- "optimizer": "adam",
85
- "loss": "binary_crossentropy",
86
- "epochs": 50
87
- }
88
  }
 
1
+ {
2
+ "input_shape": [
3
+ 152,
4
+ 152,
5
+ 3
6
+ ],
7
+ "encoder": {
8
+ "conv_layers": [
9
+ {
10
+ "filters": 32,
11
+ "kernel_size": [
12
+ 3,
13
+ 3
14
+ ],
15
+ "activation": "relu"
16
+ },
17
+ {
18
+ "filters": 64,
19
+ "kernel_size": [
20
+ 3,
21
+ 3
22
+ ],
23
+ "activation": "relu"
24
+ },
25
+ {
26
+ "filters": 128,
27
+ "kernel_size": [
28
+ 3,
29
+ 3
30
+ ],
31
+ "activation": "relu"
32
+ }
33
+ ],
34
+ "pooling": {
35
+ "size": [
36
+ 2,
37
+ 2
38
+ ]
39
+ }
40
+ },
41
+ "decoder": {
42
+ "conv_layers": [
43
+ {
44
+ "filters": 128,
45
+ "kernel_size": [
46
+ 3,
47
+ 3
48
+ ],
49
+ "activation": "relu"
50
+ },
51
+ {
52
+ "filters": 64,
53
+ "kernel_size": [
54
+ 3,
55
+ 3
56
+ ],
57
+ "activation": "relu"
58
+ },
59
+ {
60
+ "filters": 32,
61
+ "kernel_size": [
62
+ 3,
63
+ 3
64
+ ],
65
+ "activation": "relu"
66
+ }
67
+ ],
68
+ "upsampling": {
69
+ "size": [
70
+ 2,
71
+ 2
72
+ ]
73
+ },
74
+ "output_layer": {
75
+ "filters": 3,
76
+ "kernel_size": [
77
+ 3,
78
+ 3
79
+ ],
80
+ "activation": "sigmoid"
81
+ }
82
+ },
83
+ "training": {
84
+ "optimizer": "adam",
85
+ "loss": "binary_crossentropy",
86
+ "epochs": 50
87
+ }
88
  }