File size: 100 Bytes
1ebfbbf | 1 2 3 4 5 | import numpy as np
def preprocess(feat):
return [np.ascontiguousarray(feat, dtype=np.float32)]
|
1ebfbbf | 1 2 3 4 5 | import numpy as np
def preprocess(feat):
return [np.ascontiguousarray(feat, dtype=np.float32)]
|