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/
govg has joined #mlpack
govg has quit [Quit: leaving]
govg has joined #mlpack
deep-book-gk has joined #mlpack
deep-book-gk has left #mlpack []
mikeling has joined #mlpack
kris1 has quit [Quit: kris1]
vivekp has quit [Ping timeout: 260 seconds]
vivekp has joined #mlpack
partobs-mdp has joined #mlpack
< partobs-mdp>
zoq: rcurtin: Wrapped up all unit tests for benchmarking (in the corresponding PR). However, there is a merge conflict. How can I resolve it?
< zoq>
partobs-mdp: Rebase the PR against the current master branch, or you can also click on "Resolve conflicts" on the PR and manually fix the issue. I can also fix the issue for you, just let me know.
< partobs-mdp>
zoq: Rebased, now waiting for running checks (Jenkins still crashes)
vivekp has quit [Ping timeout: 258 seconds]
vivekp has joined #mlpack
kris1 has joined #mlpack
< ironstark>
rcurtin: zoq: I am facing issues while writing dlib-ml scripts
< ironstark>
this is my KMEANS script
< ironstark>
can you please tell me the issues. ( I know there are many :( ).
< zoq>
partobs-mdp: About the jenkins issue, Saurabh and Ryan are working on the jenkins system, so they might be ale to provide some helpful input, so let us wait some more time, before I go and take a closer look.
< zoq>
ironstark: Let me take a look.
< zoq>
ironstark: There is no direct conversion between arma and dlib, so you can't just write: std::vector<sample_type> samples = referenceData;
< zoq>
ironstark: I also I changed the dimension for: typedef matrix<double,referenceData.n_rows,referenceData.n_cols> sample_type; the second dimension should be 1, since referenceData.n_cols represents the number of samples so referenceData.n_cols = samples.size()
< zoq>
ironstark: I couldn't find a centroids file/matrix, maybe I missed something?
< zoq>
ironstark: We have to do the same conversion as we did for the samples.
< ironstark>
zoq: Yes I haven't built the centroid matrix yet. Will do the same. Thanks a lot for the help.
< zoq>
ironstark: Ah okay, let me know if you run into any other issues, I haven't tested the code, so there might be some issues that I missed.
< ironstark>
sure
kris1 has left #mlpack []
pretorium[m] has quit [Ping timeout: 240 seconds]
MikeLDN has joined #mlpack
kris1 has joined #mlpack
< lozhnikov>
kris1: hi, were you able to try the ssRBM on the CIFAR dataset?
< lozhnikov>
kris1: and were you able to write the 9th blog post?
< kris1>
Hi, Sorry i wasn’t able to work on this weekend as busy with some administrative works in my institute.
< kris1>
I would working on it today.
< lozhnikov>
okay, no problem. And what about the blog post?
< kris1>
I was able to complete gan with only one optimizer though. Yes i would write the blogpost tonight. Or tommrow in the morning.
< lozhnikov>
ok
< kris1>
The gan is giving some assertion errors that i was trying to figure though due to lack of time i was not able to do so. Maybe later today i can update the PR.
< lozhnikov>
sounds good
< partobs-mdp>
zoq: Fixed everything from your review. When are we going to merge the benchmark PR - I'm feeling a bit tight on time :|
< zoq>
partobs-mdp: Okay, let me take a final look.
< zoq>
partobs-mdp: Once we fixed the style errors the PR should be ready, at least from my side.
< ironstark>
zoq: looks like we cannot use referenceData.n_rows here :