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/
ImQ009 has quit [Quit: Leaving]
govg has quit [Ping timeout: 265 seconds]
govg has joined #mlpack
vivekp has quit [Ping timeout: 268 seconds]
vivekp has joined #mlpack
anshb has joined #mlpack
anshb has quit [Ping timeout: 260 seconds]
vivekp has quit [Ping timeout: 264 seconds]
vivekp has joined #mlpack
kartheek has joined #mlpack
kartheek has quit [Ping timeout: 260 seconds]
vivekp has quit [Ping timeout: 240 seconds]
vivekp has joined #mlpack
ImQ009 has joined #mlpack
travis-ci has joined #mlpack
< travis-ci> ShikharJ/mlpack#42 (RBM - bcf8aca : Shikhar Jaiswal): The build has errored.
travis-ci has left #mlpack []
vivekp has quit [Ping timeout: 276 seconds]
HeikoS has joined #mlpack
vivekp has joined #mlpack
vijay_ has joined #mlpack
govg has quit [Ping timeout: 260 seconds]
vivekp has quit [Ping timeout: 276 seconds]
vivekp has joined #mlpack
vivekp has quit [Ping timeout: 260 seconds]
vivekp has joined #mlpack
witness has quit [Quit: Connection closed for inactivity]
manish7294 has joined #mlpack
< manish7294> @rcurtin @zoq : I have trained two sparse coding models with same input parameters one after another and got different results for both dictionary and codes matrices. Is it normal?
< rcurtin> did you use the same random seed?
< rcurtin> I think you are talking about writing tests for them, in which case you shouldn't set the random seeds to the same value (instead use an initial dictionary), but if you are just testing e.g. from the command-line program, the --seed option will help :)
< manish7294> rcurtin: I haven't set seed so default value 0 is being used.
< rcurtin> right, if it's a command-line program seed=0 means 'std::time(NULL)' is used so it will be different every run
< rcurtin> but if you are in just one section of code and you train models sequentially, you will get a different result unless you reset the random seed (or use an initial dictionary)
< manish7294> rcurtin: Thanks I will try that.
< ImQ009> I seem to have a little trouble understanding the RNN architecture that's been implemented in mlpack. How can I specify the amount of neurons in the layers?
< rcurtin> ImQ009: these are specified in the parameters when you call the Add() function, I think the examples in recurrent_network_test.cpp should help clarify
< ImQ009> Oh, I see. Thank you
< ImQ009> Yes, this will be very helpful
< manish7294> rcurtin: Thanks, resetting seed worked.
< rcurtin> manish7294: good to know, but just FYI that's not a great idea in the tests so I'd recommend setting the initial dictionary instead, if you are looking into this for the purpose of writing tests :)
< manish7294> rcurtin: marked your words. Thanks for advice :)
< rcurtin> sure, happy to help
vijay_ has quit [Ping timeout: 260 seconds]
brni has joined #mlpack
brni has quit [Quit: Page closed]
manish7294 has quit [Quit: AndroIRC - Android IRC Client ( http://www.androirc.com )]
brni has joined #mlpack
nurdtechie98 has joined #mlpack
< nurdtechie98> Hey guys, I am new to Open Source.Looking forward to contribute..please help me get started.
< zoq> nurdtechie9: Hello, a good starting point is: https://github.com/mlpack/mlpack/blob/master/CONTRIBUTING.md
< nurdtechie98> Ohkk cool,thanks man.
brni has quit [Ping timeout: 260 seconds]
nurdtechie98 has quit [Quit: Page closed]
< ImQ009> Anybody was able to set mlpack up under Windows? I've got issues with cmake not finding the boost libraries
< zoq> ImQ009: Are you able to use anaconda?
< ImQ009> Never used it. Though it appears the only Windows-built package of mlpack is quite outdated
< rcurtin> doesn't AppVeyor have pre-built Windows packages you could download? I am not sure how to do that though, I have never done it
< rcurtin> that would be the git master repo not 2.2.5 though
< zoq> if you just need the latest lib/bins AppVeyor is probably the best option
< rcurtin> like perhaps that might be useful? I am not sure how to use it though, I am not a good windows user
< ImQ009> Oh, interesting
< zoq> I have a conda script if you like to build it yourself
< zoq> I think conda is way easier to use as nuget
< ImQ009> I'll try the package that's on AppVeyor, thanks once again
< zoq> okay, make sure you get the package with all the libs
< ImQ009> I'm still rather puzzled by the boost issue. I'll try to investigate it more tommorow
< ImQ009> Because I was simply following this guide https://keon.io/mlpack-on-windows/
< zoq> right, that should work just fine
< ImQ009> Though, I'm using MSVC 2017, which might simply not work with this
< zoq> We are testing it for 2015 and 2017, so it should work.
< rcurtin> ImQ009: I gave the link for the 2015 build I think, but if you dig around you should be able to find the 2017 build too
< ImQ009> rcurtin, it's fine, 2015 should link just fine
< ImQ009> Maybe the boost version I'm using is the problem? I'm using Boost 1.66 for vc141 instead of 1.60 for vc140
< ImQ009> I see you're using the vc140 version for 2017 builds
HeikoS has quit [Ping timeout: 260 seconds]
ImQ009 has quit [Quit: Leaving]
HeikoS has joined #mlpack
HeikoS has quit [Ping timeout: 248 seconds]
< jenkins-mlpack> Project mlpack - git commit test build #2914: FAILURE in 26 min: http://masterblaster.mlpack.org/job/mlpack%20-%20git%20commit%20test/2914/
< jenkins-mlpack> * Ryan Curtin: Clean up CLI singleton implementation.
< jenkins-mlpack> * Ryan Curtin: singletons.hpp can also be removed.