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/
nilay has quit [Ping timeout: 250 seconds]
nilay has joined #mlpack
tsathoggua has joined #mlpack
tsathoggua has quit [Client Quit]
nilay has quit [Ping timeout: 250 seconds]
Stellar_Mind has joined #mlpack
Stellar_Mind has quit [Ping timeout: 258 seconds]
Stellar_Mind has joined #mlpack
Stellar_Mind2 has joined #mlpack
Stellar_Mind has quit [Ping timeout: 240 seconds]
Stellar_Mind has joined #mlpack
Stellar_Mind2 has quit [Ping timeout: 260 seconds]
Stellar_Mind has quit [Ping timeout: 258 seconds]
Mathnerd314 has quit [Ping timeout: 272 seconds]
nilay has joined #mlpack
nilay has quit [Ping timeout: 250 seconds]
nilay has joined #mlpack
< nilay>
zoq tham: i have completed feature extraction part. i am pasting the gist here. i will convert this in mlpack format after some time.
< nilay>
i am getting some error.
< nilay>
i'll post in some time, sorry.
nilay has quit [Ping timeout: 250 seconds]
< mentekid>
rcurtin: I have some "alternative" code to the one you included in your PR - how do I share it with you? Can I commit to that PR in some way, should I open a different one?
Stellar_Mind has joined #mlpack
< rcurtin>
mentekid: the way I did it for your PR was to check out your PR branch and then commit my code
< rcurtin>
then use git format-patch to create the patch and send it to you
< rcurtin>
maybe there is an easier way bit that way at least works... :)
< mentekid>
I emailed it to you :)
Stellar_Mind has quit [Ping timeout: 252 seconds]
< mentekid>
the attachment doesn't show up at the github interface though :/
Mathnerd314 has joined #mlpack
< rcurtin>
mentekid: thanks, I will merge it in when I can
< rcurtin>
probably not today, I am at the track racing karts :)
< mentekid>
sounds fun! It's not really ready for a merge yet, if we end up going that way we need to change the serialization and probably other interface things
< rcurtin>
wow, a comment from Sterling, h
< rcurtin>
I had no idea he still watched the github repo :)
< keonkim>
cli executables seems to have two major styles of writing. The one that initializes every parameters at the beginning of main() and one that initiailizes parameters right before they are needed. Which one should I go for as I write new executable?
< keonkim>
oh, and sometimes there is also two kinds of checks, which really does the same thing: CLI::HasParam() and parameter.empty(). which one is better?
< keonkim>
(I mean preferred)
< keonkim>
one that is most comfortable to my eyes is initializing everything at the beginning and checking by CLI::HasParams.
nilay has joined #mlpack
< keonkim>
I want to unify the styles while going through every _main.cpp s
TD has joined #mlpack
< TD>
To install mlpack on Windows 10 do you need to still install Armadillo, ProBoost, Etc;
< TD>
Currently, I have downloaded the mlpack from the appveyor site
< TD>
I have copied and pasted the files into my VS2013 solution explorer
< keonkim>
I just went through that like yesterday. I might be able to help you.
< TD>
if you could it would be greatly appreciated
< keonkim>
my version was VS2015. I installed using nuget.
< nilay>
so right now i am not using templates, even though class is templatized.
< nilay>
what should i do in order to do that. also the varaibles that are being assigned in the code to matrices should also be of that same type, so thats why i am unsure.
< nilay>
zoq: it takes 18s on my machine just for the example code that you posted. the slowest step for python codes is the reshape() that is being done in reg_ftr and ss_ftr
< nilay>
i think even though we avoid that thing upto some extent, it may be slowest step for this implementation as well. So once the template thing is done, i can write it in mlpack format and we can use github then.
< zoq>
nilay: So, you can basically use MatType instead of arma::mat in your code at the postions where it makes sense. So, instead of: void Gradient(arma::cube& InImage, arma::mat& Magnitude, arma::mat& Orientation);
< keonkim>
TD: it is little rough since i rushed it :), also, try the one on the master branch (https://github.com/mlpack/mlpack) instead of the 2.0.1 release.
< zoq>
keonkim: I don't mind to use either parameter.empty() or CLI::HasParam(); also I'm not sure we have to unify the executables, do you think it would increase readability?
nilay has quit [Quit: Page closed]
< keonkim>
zoq: yes I suggested it just for the readability.
< TD>
Keonkim: Love the screen shots and thanks for putting this together! This explains a lot. I will send over any documentation that I can add
< zoq>
keonkim: Okay, I don't see a reason not to do so, maybe some else does, but if not I would say go ahead :)
< zoq>
keonkim: I agree, great blog post; step 3 lacks the armadillo build step, but I'm sure anybody can figure it out.
< keonkim>
I just updated it. :) thanks for letting me know.
< keonkim>
TD: tell me if you get unsuccessful with this instruction. I am going to sleep now. :)
< TD>
Thanks and get some rest. I am going to give it a go tomorrow and I will let you know.