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/
lezorich has joined #mlpack
lezorich has quit [Quit: Ex-Chat]
curiousguy13 has quit [Ping timeout: 250 seconds]
curiousguy13 has joined #mlpack
curiousguy13 has quit [Ping timeout: 255 seconds]
kshitijk has joined #mlpack
kshitijk has quit [Ping timeout: 246 seconds]
kshitijk has joined #mlpack
tunnelshade has left #mlpack []
curiousguy13 has joined #mlpack
curiousguy13 has quit [Client Quit]
vedhu63w has joined #mlpack
govg has joined #mlpack
< zoq> This should be the last test case for the recurrent network architecture; at least as long as somebody comes up with a neat idea for another test case.
< naywhayare> I need to read through all these test cases... I might learn something about neural networks :)
< zoq> JaraxussTong: I'll go an adjust the Train class so that it works with 2D and 1D data without explicitly specifying the dimension this week; Hopefully I can come up with a neat idea to easily build a network without using c++14 functionality.
< zoq> JaraxussTong: I tend to be picky about code, so maybe if your time permits you can look into the style guidelines: https://github.com/mlpack/mlpack/wiki/StyleGuidelines If not I'll go and do the modifications.
< zoq> Maybe someone has a neat idea: Right now the ann/trainer class provides an interface to handle 2D matrices as input; since the cnn network works on 3D matrices we need to modify some function, e.g. Train. Armadillo comes with some types to handle 3D matrices (cube/field). The problem is, we use col(...) to handle 2D data and slice(...) to handle 3D data.
< zoq> We can easily solve the problem by overloading the affected functions, but that results in some code duplication which I would ideally avoid. So maybe another solution is to use a function pointer which points to the right member function?
kshitijk has quit [Ping timeout: 245 seconds]
govg has quit [Ping timeout: 265 seconds]
govg has joined #mlpack
govg has quit [Ping timeout: 264 seconds]
govg has joined #mlpack
< stephentu> zoq: where'd you learn so much about neural nets