Open v-iashin opened 9 months ago
np.array(vid_feats) saves the list into float64 which doubles the disk space.
np.array(vid_feats)
casting it to f32 (or, ideally, to a user-defined precision) would be nice.
it is should be very simply to do
np.array(vid_feats)
saves the list into float64 which doubles the disk space.casting it to f32 (or, ideally, to a user-defined precision) would be nice.
it is should be very simply to do