@@ -86,7 +86,7 @@ def __init__(self, input_layer, sizes, name=None):
86
86
# ----------------------------------------------------------------------------------------------------------------------
87
87
88
88
89
- class SplitDepth (Layer ):
89
+ class SplitDepth (SplitLayer ):
90
90
"""The layer that splits an input blob along the Depth dimension.
91
91
92
92
:param input_layer: The input layer and the number of its output. If no number
@@ -120,7 +120,7 @@ def __init__(self, input_layer, sizes, name=None):
120
120
# ----------------------------------------------------------------------------------------------------------------------
121
121
122
122
123
- class SplitWidth (Layer ):
123
+ class SplitWidth (SplitLayer ):
124
124
"""The layer that splits an input blob along the Width dimension.
125
125
126
126
:param input_layer: The input layer and the number of its output. If no number
@@ -154,7 +154,7 @@ def __init__(self, input_layer, sizes, name=None):
154
154
# ----------------------------------------------------------------------------------------------------------------------
155
155
156
156
157
- class SplitHeight (Layer ):
157
+ class SplitHeight (SplitLayer ):
158
158
"""The layer that splits an input blob along the Height dimension.
159
159
160
160
:param input_layer: The input layer and the number of its output. If no number
@@ -188,7 +188,7 @@ def __init__(self, input_layer, sizes, name=None):
188
188
# ----------------------------------------------------------------------------------------------------------------------
189
189
190
190
191
- class SplitListSize (Layer ):
191
+ class SplitListSize (SplitLayer ):
192
192
"""The layer that splits an input blob along the ListSize dimension.
193
193
194
194
:param input_layer: The input layer and the number of its output. If no number
@@ -222,7 +222,7 @@ def __init__(self, input_layer, sizes, name=None):
222
222
# ----------------------------------------------------------------------------------------------------------------------
223
223
224
224
225
- class SplitBatchWidth (Layer ):
225
+ class SplitBatchWidth (SplitLayer ):
226
226
"""The layer that splits an input blob along the BatchWidth dimension.
227
227
228
228
:param input_layer: The input layer and the number of its output. If no number
@@ -256,7 +256,7 @@ def __init__(self, input_layer, sizes, name=None):
256
256
# ----------------------------------------------------------------------------------------------------------------------
257
257
258
258
259
- class SplitBatchLength (Layer ):
259
+ class SplitBatchLength (SplitLayer ):
260
260
"""The layer that splits an input blob along the BatchLength dimension.
261
261
262
262
:param input_layer: The input layer and the number of its output. If no number
0 commit comments