We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 987e592 commit fdee4d7Copy full SHA for fdee4d7
preprocessing/process.py
@@ -13,7 +13,7 @@
13
14
def _process(data, clip_value, std_channels):
15
data = np.clip(data, -clip_value, clip_value)
16
- data = data / std_channels
+ data = data / np.expand_dims(std_channels, axis=1)
17
return data
18
19
0 commit comments