5
Я пытаюсь сжать мой массив как этотсжатия массива с pytables
import numpy as np
import tables
from contextlib import closing
FILTERS = tables.Filters(complib='zlib', complevel=5)
data = np.zeros(10**7)
with closing(tables.open_file('compressed', mode='w', filters=FILTERS)) as hdf:
hdf.create_array('/', 'array', obj=data)
with closing(tables.open_file('uncompressed', mode='w')) as hdf:
hdf.create_array('/', 'array', obj=data)
, но он не работает на всех
-rw-rw-r-- 1 user user 80002360 2013-11-21 15:27 compressed
-rw-rw-r-- 1 user user 80002304 2013-11-21 15:28 uncompressed
Могу ли я сделать что-то здесь не так?
Благодарим за ответ. Я не обращал внимания на этот момент в доке. – qweqwegod
Рад, что я мог помочь! –