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/
seewishnew has quit [Remote host closed the connection]
seewishnew has joined #mlpack
< sreenik>
Hi, this might be a weird question here. I use Visual studio code for C++ programming. However, the memory it consumes increases slowly over time and as it reaches the 7-8 hour mark the system consumes around 7gb of RAM (around 2.5gb is the system consumption when I start VSCode). Could this be due to a memory leak in the programs that I run or is visual studio code at fault? I use linux
Ritzing has quit [Client Quit]
< zoq>
sreenik: Could be a memory leak, perhaps you can track this down to a program you run.
seewishnew has quit [Remote host closed the connection]
pd09041999 has joined #mlpack
< sreenik>
zoq: Thanks. Unfortunately this happens with the cli parser I am developing. Ah, more digging to do... :)
< zoq>
sreenik: Running valgrind might be helpful here.
seewishnew has joined #mlpack
< sreenik>
Thanks I'll try that :)
seewishnew has quit [Ping timeout: 246 seconds]
seewishnew has joined #mlpack
jeffin143 has quit [Read error: Connection reset by peer]
seewishnew has quit [Remote host closed the connection]
kgm01 has joined #mlpack
seewishnew has joined #mlpack
seewishnew has quit [Ping timeout: 246 seconds]
kgm01 has quit [Quit: Page closed]
seawishnew has joined #mlpack
seawishnew has quit [Client Quit]
rf_sust2018 has joined #mlpack
seewishnew has joined #mlpack
seewishnew has quit [Ping timeout: 250 seconds]
pd09041999 has quit [Quit: Leaving]
pd09041999 has joined #mlpack
jeffin143 has joined #mlpack
whoKnows has joined #mlpack
< whoKnows>
once I did some changes in the source code do I need to click "build solution" under build tab in MVS or any other option beacuse by doing build solution every time it takes a very long time to build the project even for a small change in source code
< whoKnows>
Can't I build project only for the specific changes I did keeping everything intact
seewishnew has joined #mlpack
pd09041999 has quit [Ping timeout: 240 seconds]
seewishnew has quit [Ping timeout: 264 seconds]
pd09041999 has joined #mlpack
< sreenik>
whoKnows: I don't know if this will solve your issue but you can do your changes and testing in a different workspace and if everything seems to work fine, just do similar changes in your original project and build it.
< sreenik>
You can actually build individual components but I am not sure if this is exactly what you want to do. Instructions are here https://webcache.googleusercontent.com/search?q=cache:q3PxVxTLoKcJ:https://www.mlpack.org/docs/mlpack-1.0.9/doxygen/build.html+&cd=2&hl=en&ct=clnk&gl=in (this is a cached copy of the old site, I have currently forgotten the name of the new site)
seewishnew has joined #mlpack
< whoKnows>
I think this may be helpful for the next time but I just wanted to know that everyone suffers such long time for building entire project or I am doing something wrong because in my system I took an average time of around 45 minutes which is very huge
i8hantanu has quit [Quit: Connection closed for inactivity]
seewishnew has quit [Ping timeout: 240 seconds]
whoKnows has quit [Quit: Page closed]
< sreenik>
zoq: There are many optimizers in ensmallen that I have never heard of. Are all of them applicable for ANNs or do many of them (only) have other general purpose uses?
seewishnew has joined #mlpack
KimSangYeon-DGU has quit [Ping timeout: 256 seconds]
< sreenik>
zoq: ahh I see that I have implemented a couple of the non-differentiable functions also. Thanks, your reply was just in time :)
< zoq>
sreenik: Great :)
rf_sust2018 has quit [Quit: Leaving.]
rf_sust2018 has joined #mlpack
seewishnew has quit [Remote host closed the connection]
braceletboy has quit [Remote host closed the connection]
pd09041999 has quit [Read error: Connection reset by peer]
Shubhangi has joined #mlpack
rf_sust2018 has quit [Ping timeout: 245 seconds]
Shubhangi has quit [Quit: Page closed]
sreenik has quit [Quit: Page closed]
sumedhghaisas has quit [Ping timeout: 256 seconds]
saksham189 has joined #mlpack
KimSangYeon-DGU has joined #mlpack
robb_ has joined #mlpack
< robb_>
Hey, so I'm not entirely sure what the 3rd dimension for recurrent neural networks is.
< robb_>
I've read the documentation and it looks like each slice is a data point
< robb_>
oops, I mean time step
< robb_>
and each column is a data point. so would each row be a feature?
< saksham189>
robb_: you are correct about each slice which refers to a time step. each slice has multiple data points (columns) for a given batch which leads to rows
< saksham189>
hope i am clear
pd09041999 has joined #mlpack
< robb_>
saksham189: thank you for the clarification. so each row is a batch?
< saksham189>
a row corresponds to a single dimension of multiple data points for certain time step
pistacja has joined #mlpack
< robb_>
ok thank you. i just wish there were better RNN examples . I had to pull the sine wave one from the boost tests lol