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
kaushik_ has joined #mlpack
hacsheng has joined #mlpack
taeguk has joined #mlpack
taeguk has quit [Client Quit]
hacsheng has quit [Quit: Page closed]
hacsheng has joined #mlpack
< hacsheng>
I would like to contribute to this organisation. And I have a great interests in Essential Deep Learning modules project idea especially Bidirectional Recurrent networks (BRN).
< hacsheng>
I traced IRC and issue and I found RBM,SpikeSlabRBM and GAN was were done. Is there any the pending work about DBN,RBFN, and BRN.
< hacsheng>
If not, Can I propose modules that I wish to implement?
hacsheng has quit [Ping timeout: 260 seconds]
hacsheng has joined #mlpack
hacsheng has quit [Ping timeout: 260 seconds]
hacsheng has joined #mlpack
hacsheng has quit [Ping timeout: 260 seconds]
daivik has joined #mlpack
hacsheng has joined #mlpack
< zoq>
hacsheng: Hello, there is an open PR for RBM and GAN, so this is already taken up. However, you are free to propose anything you like to implement. The models listed on the ideas page are suggestions.
< hacsheng>
zoq: Thanks!! I prefer to implement BRN. Hope to discuss with you after I organize my thoughts clearly in detail!
< zoq>
hacsheng: Good plan, let's do this.
govg has quit [Ping timeout: 256 seconds]
govg has joined #mlpack
stoicangelo has joined #mlpack
stoicangelo has quit [Remote host closed the connection]
govg has quit [Ping timeout: 255 seconds]
kaushik_ has quit [Quit: Connection closed for inactivity]
< ytka>
hello wanna ask a question. I download mlpack-master and g++ recurrent_network_test.cpp. There are two main error below:
< ytka>
1.this file requires compiler and lib support for the ISO C++2011 standard . This support must be enable with the std=c++11 or -std=gnu++11 compiler options
ytka has quit [Quit: Page closed]
ytka has joined #mlpack
< ytka>
2.In file included from /usr/include/mlpack/prereqs.hpp:110:0, from /usr/include/mlpack/core.hpp:238, from recurrent_network_test.cpp:12: /usr/include/mlpack/core/util/arma_config_check.hpp:19:27: fatal error: arma_config.hpp: No such file or directory compilation terminated.
< ytka>
There is no arma_config_check.hpp in mlpack. (mlpack-master) But it seem to be necessary
< zoq>
ytka: Hello, arma_config is generated in the build process (CMake). About the issues with recurrent_network_test.cpp, did you build mlpack? Once you build the code you could run the test with: bin/mlpack_test -t RecurrentNetworkTest. Or you can build against the lib and run your own code.
akul has joined #mlpack
ShikharJ has joined #mlpack
< ShikharJ>
zoq: I was thinking whether mlpack should have a requirement for code coverage (codecov), on the incoming PRs. What do you think?
akul has quit [Quit: Page closed]
< zoq>
ShikharJ: I'm not sure it should be a requirement, at least not a hard requirement. Writing a good and meaningful test should be the number one priority, however, it might be useful as an indicator, depending on how flexible it is, can we exclude something like: size_t parameter { return paraemeter}.
< ShikharJ>
Sure, code coverage is anyways only intended as a guideline. Plus I find it very useful to view the generated reports to lookout for areas where the code remains untested.
< sshkhrnwbie>
This is regarding our discussion about implementing the variance scaling initializer (for further use in Xavier and He initializers). I went through the comments on #939 and your design guidelines and think it will be suitable to implement two classes VarianceScalingUniformInit and VarianceScalingGaussianInit as I agree that there will be little code overlap in them
< sshkhrnwbie>
How do you suggest I incorporate the mode (fan-in / fan-out / fan-average) in the initializer ?
< zoq>
sshkhrnwbie: An easy option would be to let the user provide the parameters at contruction time, another option would be to pass the constructed network itself.
< zoq>
W ecould do both and start with the first option.
< sshkhrnwbie>
ok I will try and get an implementation working