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/
trapz has quit [Quit: trapz]
trapz has joined #mlpack
sumedhghaisas has joined #mlpack
trapz has quit [Quit: trapz]
sumedhghaisas has quit [Ping timeout: 260 seconds]
sumedhghaisas has joined #mlpack
vinayakvivek has joined #mlpack
nu11p7r has quit [Ping timeout: 240 seconds]
govg has quit [Quit: leaving]
chenzhe has quit [Ping timeout: 245 seconds]
sumedhghaisas has quit [Ping timeout: 260 seconds]
govg has joined #mlpack
vss has joined #mlpack
vss has quit [Quit: Page closed]
trapz has joined #mlpack
govg has quit [Ping timeout: 252 seconds]
trapz has quit [Quit: trapz]
trapz has joined #mlpack
trapz has quit [Quit: trapz]
trapz has joined #mlpack
nu11p7r has joined #mlpack
Trion has joined #mlpack
Trion has quit [Ping timeout: 240 seconds]
govg has joined #mlpack
govg has quit [Ping timeout: 260 seconds]
Trion has joined #mlpack
mikeling has joined #mlpack
sumedhghaisas has joined #mlpack
govg has joined #mlpack
Trion has quit [Quit: Have to go, see ya!]
aashay has quit [Quit: Connection closed for inactivity]
govg has quit [Ping timeout: 245 seconds]
govg has joined #mlpack
aashay has joined #mlpack
sumedhghaisas has quit [Ping timeout: 260 seconds]
naxalpha has joined #mlpack
chenzhe has joined #mlpack
< rcurtin> zoq: does the benchmarking system set LD_LIBRARY_PATH, or is it assumed that LD_LIBRARY_PATH is already set correctly?
< rcurtin> I am looking through the code and it looks like the latter, but I want to check in case I missed something
< zoq> rcurtin: It assumed that LD_LIBRARY_PATH is already set correctly.
< rcurtin> ok, thanks
mikeling has quit [Quit: Connection closed for inactivity]
chenzhe has quit [Ping timeout: 245 seconds]
< naxalpha> hey guys anything about versioning...
naxalpha has quit [Quit: Page closed]
< rcurtin> naxalpha: you could build from a tag instead
< rcurtin> any released mlpack package should probably be built from a tag anyway, not a great idea to release some nuget/chocolatey package that isn't stable
< zoq> I guess you could also parse mlpack_alknn -V ?
< zoq> Has anybody deactivated the travis irc notifcation?
< rcurtin> as far as I can tell it is still enabled, I'm not sure why we aren't getting anything
< rcurtin> I looked at travis open issues, didn't see any recent problems with irc
< zoq> hm, maybe it's temporary
< rcurtin> yeah, with services like this, to me it always seems like it's best to wait a while before investigating too deeply because someone else probably already is...
< rcurtin> but it seems like it's been quite a while since we've heard from the travis IRC bot
< zoq> yeah, I'll wait a little bit longer :)
chenzhe has joined #mlpack
chenzhe has quit [Ping timeout: 240 seconds]
chenzhe has joined #mlpack
chenzhe has quit [Ping timeout: 240 seconds]
sumedhghaisas has joined #mlpack
chenzhe has joined #mlpack
chenzhe has quit [Ping timeout: 240 seconds]
trapz has quit [Quit: trapz]
chenzhe has joined #mlpack
chenzhe has quit [Ping timeout: 240 seconds]
vinayakvivek has quit [Quit: Connection closed for inactivity]
< zoq> rcurtin: The ann install script fails since tars=`ls ann*.tar.gz | wc -l`; also matches with annoy*
< zoq> tars=`ls ann*.tar.gz | grep -viw "annoy*" | wc -l`;
< zoq> not sure there is a better solution, ls --ignore= doesn't work for me, also we have to change the extraction command:
< zoq> tar -xzpf `ls ann*.tar.gz | grep -viw "annoy*"` --strip-components=1 -C ann/ works for me
< rcurtin> zoq: yeah, I just changed to 'ann.tar.gz'
< rcurtin> I think I may do that with all the scripts, because the download scripts strip the version number
< zoq> that is a simple solution :)