Bazı dizge tablolarını Torch içindeki dosyalara kaydetmeye çalışıyorum. Bu Torch uzantısını Deepmind: hdf5 ile kullanmayı denedim.Torçta Dosya İçerisine Yazma
require 'hdf5'
label = {'a', 'b','c','d'}
local myFile = hdf5.open(features_repo .. 't.h5', 'w')
myFile:write('label', label)
myFile:close()
ben hata alıyorum:
/home/user/torch/install/bin/luajit: ...e/user/torch/install/share/lua/5.1/hdf5/group.lua:222: torch-hdf5: writing data of type string is not supported
Torch Tensörleri amaçlandığı gibi dosyaya yazılır.
Mat dosyaları için (MatLab için) matio kullanmayı denedim. "Etiket" dizeleri bir tablo olduğu için
bad argument #1 to 'varCreate' (cannot convert 'number' to 'const char *')
Maalesef dizeleri kaydetmem gerekiyor. –