verne.freenode.net changed the topic of #mlpack to: http://www.mlpack.org/ -- We don't respond instantly... but we will respond. Give it a few minutes. Or hours. -- Channel logs: http://www.mlpack.org/irc/
kris1 has joined #mlpack
< sumedhghaisas>
rcurtin: Hey Ryan... KRANN tests are failing for my PR... Don't know why. I did change anything there...
< sumedhghaisas>
they are passing on AppVeyor
kris1 has quit [Quit: kris1]
< rcurtin>
sumedhghaisas: the KRANNTest failures are known, don't worry about them
chenzhe has quit [Remote host closed the connection]
chenzhe has joined #mlpack
chenzhe has quit [Quit: chenzhe]
chenzhe has joined #mlpack
partobs-mdp has joined #mlpack
partobs-mdp has quit [Client Quit]
< chenzhe>
This might be an easy question: how do we check arma::mat values in debugger like gdb or lldb?
< chenzhe>
I am using clion, it shows me mat variable has component: "mem" and "mem_local"
< chenzhe>
mem is of const double *const
< chenzhe>
and mem_local is of double[16], the dimension looks not the same as my matrix
< rcurtin>
chenzhe: yeah, you want the mem[] array
< rcurtin>
but to get an individual element you will have to offset it yourself a little bit
< rcurtin>
since armadillo matrices are column-major (i.e. columns are contiguous), then to get the memory location of location (r, c) will be c * n_rows + r
< rcurtin>
so, i.e., position (2, 3) -> mem[3 * n_rows + 2]
< rcurtin>
the mem_local[] array is, I think, what is used for fixed-size matrices
< chenzhe>
rcurtin: Thanks! ^_^
chenzhe1 has joined #mlpack
< rcurtin>
sure, let me know if I can help with anything else :)
chenzhe has quit [Ping timeout: 255 seconds]
chenzhe1 is now known as chenzhe
chenzhe has quit [Quit: chenzhe]
mikeling has quit [Quit: Connection closed for inactivity]
< kris1>
appvoyer and travis are failing arma::mat X; X = {{1, 0, 1},{0,0,0}}; but this passes locally
< kris1>
any ideas why this is happening
< kris1>
thanks mikhail just saw your comment
< lozhnikov>
not sure, but maybe Travis's version of armadillo doesn't support that
chenzhe has joined #mlpack
mentekid has quit [Quit: Leaving.]
sikoizon has joined #mlpack
< sikoizon>
while downloading version 2.2.3 of mlpack on linux 64 machine with ubuntu 16.04 LTS
< sikoizon>
and using the tutorial for build on mlpack .. i am getting an error