-
Notifications
You must be signed in to change notification settings - Fork 43
DeepBeliefSDK
Waylon Flinn edited this page Jan 4, 2016
·
1 revision
-
Buffer - generalized array class. sometimes used at image level, sometimes batch level
- stores TypedArray in
_data
(or_quantizedData
) - shape stored in
Dimension
class in_dims
-
[batch, rows, columns, channels]
(this.valueAt(imageCount, y, x, channel)
from showDebugImage) -
[rows, columns, channels]
(this._dims.offset(originY, originX, 0);
from extractSubregion)
-
- stores TypedArray in
-
Dimensions - shape class with some syntactic sugar
- shape is a javascript Array stored in
_dims
- shape is a javascript Array stored in
Javascript and WebGL versions use different matrix layouts
- javascript is column major
- webgl is row major