ChanServ changed the topic of #mlpack to: "mlpack: a fast, flexible machine learning library :: We don't always respond instantly, but we will respond; please be patient :: Logs at http://www.mlpack.org/irc/
xiaohong has joined #mlpack
xiaohong has quit [Ping timeout: 246 seconds]
vivekp has quit [Ping timeout: 245 seconds]
xiaohong has joined #mlpack
xiaohong has quit [Ping timeout: 245 seconds]
xiaohong has joined #mlpack
xiaohong has quit [Remote host closed the connection]
xiaohong has joined #mlpack
xiaohong has quit [Remote host closed the connection]
xiaohong has joined #mlpack
xiaohong has quit [Remote host closed the connection]
xiaohong has joined #mlpack
xiaohong has quit [Remote host closed the connection]
xiaohong has joined #mlpack
xiaohong has quit [Remote host closed the connection]
xiaohong has joined #mlpack
xiaohong has quit [Remote host closed the connection]
xiaohong has joined #mlpack
xiaohong has quit [Remote host closed the connection]
gtank___ has joined #mlpack
Sergobot has joined #mlpack
akhandait has joined #mlpack
xiaohong has joined #mlpack
xiaohong has quit [Remote host closed the connection]
KimSangYeon-DGU has joined #mlpack
favre49 has joined #mlpack
favre49 has quit [Remote host closed the connection]
favre49 has joined #mlpack
< favre49> zoq Correct me if I'm wrong, but from what I understand, only members of the new population are associated with the reference points, and we use the niche count from there for choosing niche members from the last front?
< jenkins-mlpack2> Project docker mlpack nightly build build #414: STILL UNSTABLE in 3 hr 28 min: http://ci.mlpack.org/job/docker%20mlpack%20nightly%20build/414/
favre49 has quit [Remote host closed the connection]
ImQ009 has joined #mlpack
KimSangYeon-DGU has quit [Ping timeout: 260 seconds]
vivekp has joined #mlpack
< zoq> favre49: Correct.
vivekp has quit [Ping timeout: 248 seconds]
vivekp has joined #mlpack
KimSangYeon-DGU has joined #mlpack
KimSangYeon-DGU has quit [Remote host closed the connection]
seeni_ has joined #mlpack
seeni_ has quit [Quit: seeni_]
travis-ci has joined #mlpack
< travis-ci> mlpack/ensmallen#415 (ensmallen-1.16.1 - 549ae4f : Ryan Curtin): The build passed.
< travis-ci> Change view : https://github.com/mlpack/ensmallen/compare/9627721f41ea^...549ae4f6fd58
travis-ci has left #mlpack []
travis-ci has joined #mlpack
< travis-ci> mlpack/ensmallen#416 (master - 549ae4f : Ryan Curtin): The build passed.
travis-ci has left #mlpack []
travis-ci has joined #mlpack
< travis-ci> mlpack/ensmallen#417 (master - bfd51b0 : Ryan Curtin): The build passed.
travis-ci has left #mlpack []
jeffin143 has joined #mlpack
< jeffin143> zoq : i pulled the latest mlpack branch and ran cmake and that install STB_IMAGE
< jeffin143> but if i make changes and again run mlpack_test or somthing it throws an erro
< jeffin143> error*
< jeffin143> isn't the installation persistent ?
< jeffin143> fatal error: stb_image.h: No such file or directory #include <stb_image.h>
< jeffin143> every time i make some changes, i have to remove the build folder and then again run cmake always
< rcurtin> jeffin143: let me try to reproduce, hang on
< zoq> I think I see the problem, if https://github.com/mlpack/mlpack/blob/574f2dff3a4d93c5c800ab5e95b3f30bd308324e/CMakeLists.txt#L321 is false we don't update the path.
< rcurtin> right, I think we need `include_directories(${STB_IMAGE_INCLUDE_DIR})` both there (line 346) and later down if stb is already installed (line 358)
< rcurtin> building and testing now...
< jeffin143> also zoq , could you let me know, is there any flag to not using image functionalities, so that i can stop downloading stb
< zoq> jeffin143: -DDOWNLOAD_STB_IMAGE=OFF
< jeffin143> ok thanks :)
< zoq> rcurtin: I think 346 should be covered by 339.
< zoq> rcurtin: But you are right 357 is missing: set(MLPACK_INCLUDE_DIRS ${MLPACK_INCLUDE_DIRS} "${STB_IMAGE_INCLUDE_DIR}")
< jeffin143> shouldn't we add that to read me ? just like we added many of the flag information !
< zoq> jeffin143: Ohh yeah, good point.
< jeffin143> zoq : http://www.mlpack.org/doc/stable/doxygen/build.html#build_config , also here , since readme has only some of the information about compile flags, but website has it all
< jeffin143> so we should update there also !
< zoq> jeffin143: agreed
jeffin143 has quit [Remote host closed the connection]
< jenkins-mlpack2> Project mlpack - git commit test build #211: UNSTABLE in 47 min: http://ci.mlpack.org/job/mlpack%20-%20git%20commit%20test/211/
jeffin143 has joined #mlpack
< rcurtin> zoq: right, adding to MLPACK_INCLUDE_DIRS is much better than just using include_directories()
< rcurtin> zoq: do you want to open a PR for it or should I adapt mine and open one?
< zoq> rcurtin: If you already have one ready please go ahead.
< zoq> rcurtin: If not I can open one.
< rcurtin> sure, I'll have it ready in a few moments
< zoq> rcurtin: great, thanks!
< jeffin143> rcurtin if PARAM_FLAG("test") is there
< jeffin143> how to use it while using setInputParam()
< jeffin143> like how to set the flag while writing test for cli
< rcurtin> jeffin143: I don't understand, can you clarify more about what you are trying to do?
< rcurtin> oh, I see, then you should just be able to do SetInputParam("test", true)
< rcurtin> (the FLAG type is just a boolean)
< jeffin143> ok
< jeffin143> thanks :)
< rcurtin> sure :)
< jeffin143> also how to use setInputParam for a vector of string
< jeffin143> can i just pass it as {"1","2","3"} ?
< rcurtin> yeah, that should work, the second argument of SetInputParam() should just be the thing to set it to
< rcurtin> so for a vector of strings, I think that will work
< rcurtin> give it a shot and see what happens :)
< jeffin143> error: no matching function for call to ‘SetInputParam(const char [10], <brace-enclosed initializer list>)’ SetInputParam("dimension", {"1", "3-5"});
< jeffin143> that doesn't work
< jeffin143> i made a small workaround by declaring a vector<string> temp = {"1", "3-5"} and pass that vector, but i thought there could be a direct way
< jeffin143> seem so it is not there :)
< rcurtin> maybe there is a direct way, but I'm not sure---feel free to play with it and make changes if needed :)
< zoq> rcurtin: Can you update the REAMDME.md as well?
< rcurtin> oh, you're right, hang on
xiaohong has joined #mlpack
xiaohong has quit [Remote host closed the connection]
xiaohong has joined #mlpack
< rcurtin> there is one more ensmallen PSO issue... I am testing now and will open another PR shortly
< rcurtin> might have to do a second release in the same day :)
xiaohong has quit [Remote host closed the connection]
< zoq> rcurtin: Nice catch, should definitely put some time in the testing setup, as I think those issues are easy to detect.
xiaohong has joined #mlpack
xiaohong has quit [Remote host closed the connection]
KimSangYeon-DGU has joined #mlpack
< rcurtin> agreed
xiaohong has joined #mlpack
xiaohong has quit [Ping timeout: 276 seconds]
xiaohong has joined #mlpack
xiaohong has quit [Ping timeout: 258 seconds]
jeffin143 has quit [Ping timeout: 260 seconds]
xiaohong has joined #mlpack
xiaohong has quit [Ping timeout: 245 seconds]
vivekp has quit [Ping timeout: 245 seconds]
vivekp has joined #mlpack
xiaohong has joined #mlpack
xiaohong has quit [Ping timeout: 272 seconds]
ImQ009 has quit [Quit: Leaving]
xiaohong has joined #mlpack
xiaohong has quit [Ping timeout: 246 seconds]
xiaohong has joined #mlpack
xiaohong has quit [Ping timeout: 245 seconds]
xiaohong has joined #mlpack
xiaohong has quit [Ping timeout: 258 seconds]
xiaohong has joined #mlpack
xiaohong has quit [Ping timeout: 258 seconds]
KimSangYeon-DGU has quit [Remote host closed the connection]
xiaohong has joined #mlpack
xiaohong has quit [Ping timeout: 246 seconds]
xiaohong has joined #mlpack
xiaohong has quit [Ping timeout: 246 seconds]
xiaohong has joined #mlpack
xiaohong has quit [Ping timeout: 245 seconds]