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/
sumedhghaisas has quit [Ping timeout: 246 seconds]
kris1 has quit [Quit: kris1]
sumedhghaisas has joined #mlpack
sumedhghaisas has quit [Client Quit]
sumedhghaisas_ has joined #mlpack
partobs-mdp has joined #mlpack
sumedhghaisas_ has quit [Ping timeout: 246 seconds]
govg has joined #mlpack
partobs-mdp has quit [Remote host closed the connection]
kris1 has joined #mlpack
kris1 has quit [Quit: kris1]
kris1 has joined #mlpack
sumedhghaisas_ has joined #mlpack
kris1 has quit [Quit: kris1]
sumedhghaisas_ has quit [Ping timeout: 246 seconds]
kris1 has joined #mlpack
kris1 has quit [Quit: kris1]
kris1 has joined #mlpack
kris1 has quit [Quit: kris1]
< ironstark> I feel that the idea is good. I'll implement it and open up a PR
< rcurtin> in case anyone is interested in what I am up to and why I am so quiet on the mlpack Github, I have posted some pictures at http://www.ratml.org/misc/australia_pics.html :)
kris1 has joined #mlpack
partobs-mdp has joined #mlpack
< zoq> ironstark: I think we should discuss first which architectures we like to compare. We could start with a simple two layer multilayer perceptron with e.g. 512 nodes in the first layer and 256 nodes in the second, and use sigmoid as activation function. For training we use SGD with momentum, it looks like that's all you can do right now with dlib.
vivekp has quit [Ping timeout: 268 seconds]
< ironstark> zoq: okay I will use this architecture.
< ironstark> rcurtin: Looks like a really fun trip :)
kris1 has quit [Quit: kris1]
kris1 has joined #mlpack
vivekp has joined #mlpack
vivekp has quit [Ping timeout: 268 seconds]
vivekp has joined #mlpack
kris1 has quit [Quit: kris1]
kris1 has joined #mlpack
kris1 has quit [Quit: kris1]
kris1 has joined #mlpack
kris1 has quit [Client Quit]
kris1 has joined #mlpack
govg has quit [Ping timeout: 246 seconds]
kris1_ has joined #mlpack
kris1 has quit [Ping timeout: 260 seconds]
kris1_ is now known as kris1
shikhar has joined #mlpack
kris1 has quit [Read error: Connection reset by peer]
kris1_ has joined #mlpack
rohit has joined #mlpack
rohit has quit [Quit: Page closed]
kris1_ has quit [Read error: Connection reset by peer]
shikhar has quit [Quit: WeeChat 1.7]
kris1_ has joined #mlpack
partobs-mdp has quit [Remote host closed the connection]
mikeling has quit [Quit: Connection closed for inactivity]
andrzejku has joined #mlpack
andrzejku has quit [Quit: Textual IRC Client: www.textualapp.com]
sumedhghaisas_ has joined #mlpack
< ironstark> zoq: rcurtin; This is my dlibml SVM script
< ironstark> I am getting all the assignments as 0 here
< ironstark> never mind, got the mistake. Code works now
< ironstark> actually its breaking again. Same error. All the predictions are coming out to be 0
< ironstark> Can you please look into this
< zoq> ironstark: What dataset did you use for the test?
< ironstark> i used the iris dataset. I have tried to implement this as a multiclass classification svm
< ironstark> Have i made a mistake in doing that?
< zoq> sample_type m2;
< zoq> m2.set_size(trainData.n_cols);
< zoq> for (size_t j = 0; j< trainData.n_cols; ++j)
< zoq> {
< zoq> m2(j) = trainData(trainData.n_rows - 1, j);
< zoq> labels.push_back(m2);
< zoq> }
< zoq> Is that the part where you put the labels together (the last row holds the label)? It looks like m2.set_size(trainData.n_cols); isn't correct since for me the label is a single element so I would expect m2.set_size(1); maybe I missed something?
< zoq> sumedhghaisas_: Any updates regarding the gradient check? Still going through the code ...
< kris1_> lozhnikov: On 5000 images with training set of size 4000 and test size 1000 images the accuracy is around 30% for poolSize = 4 lr rate 0.01(time 20 min) poolSize = 3 lr rate 0.3 accuarcy is 90% 21 min
< kris1_> Have a look i have updated the PR.
< kris1_> I think will investigte why there is so much of diffrence with changing the parameters so litlle
< kris1_> zoq: Were you able to look at the GAN. Were you able to find any obvious errors !!
kris1_ has left #mlpack []
< zoq> kris1_: Glanced over the PR, but couldn't see anything obvious, trying to do an in depth look over the weekend.