-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathRandomCrop.go
executable file
·119 lines (101 loc) · 2.39 KB
/
RandomCrop.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
package layer
import tf "github.com/galeone/tensorflow/tensorflow/go"
type LRandomCrop struct {
dtype DataType
height float64
inputs []Layer
name string
seed interface{}
shape tf.Shape
trainable bool
width float64
layerWeights []*tf.Tensor
}
func RandomCrop(height float64, width float64) *LRandomCrop {
return &LRandomCrop{
dtype: Float32,
height: height,
name: UniqueName("random_crop"),
seed: nil,
trainable: true,
width: width,
}
}
func (l *LRandomCrop) SetDtype(dtype DataType) *LRandomCrop {
l.dtype = dtype
return l
}
func (l *LRandomCrop) SetName(name string) *LRandomCrop {
l.name = name
return l
}
func (l *LRandomCrop) SetSeed(seed interface{}) *LRandomCrop {
l.seed = seed
return l
}
func (l *LRandomCrop) SetShape(shape tf.Shape) *LRandomCrop {
l.shape = shape
return l
}
func (l *LRandomCrop) SetTrainable(trainable bool) *LRandomCrop {
l.trainable = trainable
return l
}
func (l *LRandomCrop) SetLayerWeights(layerWeights []*tf.Tensor) *LRandomCrop {
l.layerWeights = layerWeights
return l
}
func (l *LRandomCrop) GetShape() tf.Shape {
return l.shape
}
func (l *LRandomCrop) GetDtype() DataType {
return l.dtype
}
func (l *LRandomCrop) SetInputs(inputs ...Layer) Layer {
l.inputs = inputs
return l
}
func (l *LRandomCrop) GetInputs() []Layer {
return l.inputs
}
func (l *LRandomCrop) GetName() string {
return l.name
}
func (l *LRandomCrop) GetLayerWeights() []*tf.Tensor {
return l.layerWeights
}
type jsonConfigLRandomCrop struct {
ClassName string `json:"class_name"`
Name string `json:"name"`
Config map[string]interface{} `json:"config"`
InboundNodes [][][]interface{} `json:"inbound_nodes"`
}
func (l *LRandomCrop) GetKerasLayerConfig() interface{} {
inboundNodes := [][][]interface{}{
{},
}
for _, input := range l.inputs {
inboundNodes[0] = append(inboundNodes[0], []interface{}{
input.GetName(),
0,
0,
map[string]bool{},
})
}
return jsonConfigLRandomCrop{
ClassName: "RandomCrop",
Name: l.name,
Config: map[string]interface{}{
"dtype": l.dtype.String(),
"height": l.height,
"name": l.name,
"seed": l.seed,
"trainable": l.trainable,
"width": l.width,
},
InboundNodes: inboundNodes,
}
}
func (l *LRandomCrop) GetCustomLayerDefinition() string {
return ``
}