lua---mattorch icon indicating copy to clipboard operation
lua---mattorch copied to clipboard

An interface between Torch and Matlab

Results 15 lua---mattorch issues
Sort by recently updated
recently updated
newest added

Hi , I found a bug when running mattorch.save from my env which has default tensor type set to FloatTensor. The error which I get is as follows inspite of...

fixes https://github.com/clementfarabet/lua---mattorch/issues/5

I made attempt building and installing mattorch on OS X, by: `sudo luarocks install mattorch` ``` Installing https://raw.githubusercontent.com/torch/rocks/master/mattorch-1.0-0.rockspec... Using https://raw.githubusercontent.com/torch/rocks/master/mattorch-1.0-0.rockspec... switching to 'build' mode Cloning into 'lua---mattorch'... remote: Counting objects:...

I saw the issue about OS X Build fail and then took the following steps git clone https://github.com/clementfarabet/lua---mattorch.git cd lua---mattorch mkdir build cd build cmake -DMATLAB_ROOT=/usr/local/MATLAB/R2017a after this command this...

I tried installing mattorch with luarocks install mattorch After i exported the matlab path it gives the following build error: ``` Installing https://raw.githubusercontent.com/torch/rocks/master/mattorch-1.0-0.rockspec... Using https://raw.githubusercontent.com/torch/rocks/master/mattorch-1.0-0.rockspec... switching to 'build' mode Cloning...

When i am loading mat file into the torch environment it is causing large memory leaks

Hi, I just found an issue while saving > 2G data to .mat file. A = torch.Tensor(2000,200000):randn(2000, 200000) matorch.save('test.mat', {A=A})

In matlab, I write a single 1925x4 variable into a mat file: >> size(params) 1925 4 >> save('file.mat', 'params') Loading it into torch result with the dimensions reversed: th> require...

Handling the case of changed default tensor type (e.g. overfeat torch do the following: torch.setdefaulttensortype('torch.FloatTensor') which break the code as torch.Tensor():resizeAs() would expect a FloatTensor.

I've tried to install it but ``` -- Using Matlab in: /opt/matlab CMake Error at /usr/local/Cellar/cmake/2.8.10.2/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:97 (message): MATLAB_INCLUDE_DIR (missing: MATLAB_MEX_LIBRARY MATLAB_MAT_LIBRARY MATLAB_ENG_LIBRARY MATLAB_MX_LIBRARY) Call Stack (most recent call first): /usr/local/Cellar/cmake/2.8.10.2/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:291...