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/
witness has joined #mlpack
travis-ci has joined #mlpack
< travis-ci>
ShikharJ/mlpack#100 (RBM - 00ecc08 : Shikhar Jaiswal): The build has errored.
< ShikharJ>
zoq: I think #1098 can be closed now. The commits there have been reused and merged.
ShikharJ has quit [Quit: Page closed]
< zoq>
ShikharJ: You are right, thanks for the reminder.
< rcurtin>
ShikharJ: it's really nice to finish the backlog of old PRs; thank you for taking on the task
wenhao has joined #mlpack
vivekp has quit [Ping timeout: 240 seconds]
vivekp has joined #mlpack
witness has quit [Quit: Connection closed for inactivity]
govg has quit [Ping timeout: 268 seconds]
moksh has joined #mlpack
< moksh>
@zoq The build passed, please do take a look at the PR whenever you get time :)
thepro has joined #mlpack
< thepro>
what all ANN programs are already existing in library?
thepro has quit [Ping timeout: 268 seconds]
moksh has quit [Quit: Page closed]
bhuwnesh has joined #mlpack
bhuwnesh has left #mlpack []
vivekp has quit [Ping timeout: 240 seconds]
vivekp has joined #mlpack
vivekp has quit [Ping timeout: 240 seconds]
vivekp has joined #mlpack
vivekp has quit [Ping timeout: 268 seconds]
vivekp has joined #mlpack
vivekp has quit [Ping timeout: 256 seconds]
vivekp has joined #mlpack
bhuwnesh has joined #mlpack
ImQ009 has joined #mlpack
govg has joined #mlpack
witness has joined #mlpack
vivekp has quit [Ping timeout: 252 seconds]
vivekp has joined #mlpack
rajeshdm9 has joined #mlpack
rajeshdm9 has quit [Client Quit]
sumedhghaisas2 has quit [Read error: Connection reset by peer]
sumedhghaisas has joined #mlpack
sumedhghaisas2 has joined #mlpack
sumedhghaisas has quit [Read error: Connection reset by peer]
thepro has joined #mlpack
sumedhghaisas has joined #mlpack
sumedhghaisas2 has quit [Read error: Connection reset by peer]
robertohueso has joined #mlpack
sumedhghaisas2 has joined #mlpack
sumedhghaisas has quit [Ping timeout: 256 seconds]
< zoq>
thepro: Hello, not sure what you mean with ANN programs; mlpack implements building blocks, to create various network structures.
wenhao has quit [Ping timeout: 260 seconds]
< thepro>
ones which have their basis on neural nets.
< thepro>
I got what you want to say.
< thepro>
thanks
witness has quit [Quit: Connection closed for inactivity]
thepro has quit [Quit: Leaving]
< zoq>
Okay, I guess if the questions is, does mlpack implement conv nets, forward networks, recurrent networks, the answer is yes.
rajeshdm9 has joined #mlpack
rajeshdm9 has quit [Quit: Page closed]
sumedhghaisas2 has quit [Read error: Connection reset by peer]
sumedhghaisas has joined #mlpack
sumedhghaisas has quit [Read error: Connection reset by peer]
Sayan98 has joined #mlpack
sumedhghaisas has joined #mlpack
Sayan98 has quit [Ping timeout: 240 seconds]
Atharva has joined #mlpack
< Atharva>
Even when I use const int in place of int, Jenkins style check still tells me that I am using variable length arrays.
< Atharva>
Can someone help me here - it says - Do not use variable-length arrays. Use an appropriately named ('k' followed by CamelCase) compile-time constant for the size.
< zoq>
Can you pont me to the PR?
sumedhghaisas has quit [Read error: Connection reset by peer]
sumedhghaisas has joined #mlpack
< zoq>
*point
sumedhghaisas has quit [Read error: Connection reset by peer]
sumedhghaisas has joined #mlpack
< zoq>
You can probably use .set_size(...).
< Atharva>
#1263, okay I will try that
< zoq>
I see, yeah using arma::mat[size] isn't common.
< Atharva>
Should I use constexpr for compile time constant?
< zoq>
No need to use constexpr inside a test method.
< Atharva>
Then what do you suggest?
< zoq>
const constantName = value; is just fine
< zoq>
but if you like to use constexpr feel free.
< Atharva>
but using const still fails the style check, I will try constexpr then. Can I ask why you were reluctant to suggest constexpr?
< Atharva>
Is it something specific about it?
< zoq>
There is no specific reason.
< Atharva>
Okay :)
< Atharva>
So even using constexpr fails the style check, same error.
< Atharva>
I think it's because I am using sizeof while defining it, so it never runs at compile time.
< Atharva>
Should I just manually enter the number instead of using sizeof?
< zoq>
As I said either use set size or use the arma::mat constructor to set the size.
< zoq>
Also, it looks like you like to store matrices, so either use arma::cube or std::vector
< zoq>
std::vector might be the easiest solution
< zoq>
so something like: std::vector distances; distances.push_back(...);
< Atharva>
Okay, thanks
< Atharva>
I will use std::vector
< Atharva>
I think another approach in that particular case will be not store matrices at all, I can just check if they are equal two at a time and just overwrite the previous ones I don't need
< zoq>
good idea
sumedhghaisas has quit [Read error: No route to host]
sumedhghaisas has joined #mlpack
Atharva has quit [Quit: Page closed]
< bhuwnesh>
Hi
< zoq>
bhuwnesh: Hello there!
sumedhghaisas has quit [Read error: Connection reset by peer]
moksh has joined #mlpack
sumedhghaisas2 has joined #mlpack
daivik has joined #mlpack
sumedhghaisas has joined #mlpack
sumedhghaisas2 has quit [Read error: Connection reset by peer]
sumedhghaisas has quit [Read error: No route to host]
sumedhghaisas2 has quit [Ping timeout: 252 seconds]
sumedhghaisas has joined #mlpack
sumedhghaisas has quit [Read error: Connection reset by peer]
sumedhghaisas has joined #mlpack
sumedhghaisas2 has joined #mlpack
sumedhghaisas has quit [Ping timeout: 256 seconds]
posreci has joined #mlpack
govg has quit [Ping timeout: 240 seconds]
rajeshdm9 has quit [Ping timeout: 260 seconds]
haritha1313 has joined #mlpack
< haritha1313>
sumedhghaisas: Hi, I had a doubt regarding the SVDWrapper implemented in cf. I don't see that any SVD method being used by CF is using the wrapper.
< haritha1313>
I am trying to enable using quic_svd as a MF method in CF and have a PR open for it. I am not sure whether I should use the wrapper or rather stick to writing function for the same in cf_impl.cpp since no other SVD method seems to be using it.