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/
PulkitgeraGitte4 has joined #mlpack
PulkitgeraGitter has quit [Ping timeout: 240 seconds]
PratikPriyadars4 has joined #mlpack
AnirudhSinghCha4 has joined #mlpack
PratikPriyadarsa has quit [Ping timeout: 240 seconds]
AnirudhSinghChau has quit [Ping timeout: 240 seconds]
kshitijandmojoG4 has joined #mlpack
kshitijandmojoGi has quit [Ping timeout: 240 seconds]
zoq[m] has quit [Ping timeout: 240 seconds]
zoq[m] has joined #mlpack
blakjak888 has joined #mlpack
< blakjak888>
@zoq A while back I mentioned a problem compiling the StockPriceLSTM with Visual Studio 2019. It was running out of heap space during compilation and I traced the problem to the data::Load() calls. Today I tried to compile the same example using GCC/G++ and I faced what I guess is a similar error. This time it generated an object file that was too big and aborted with "file too big" error.
< blakjak888>
Did you try to run this example like you mentioned? It seems to be more than a compiler problem.
ImQ009 has joined #mlpack
< shrit[m]>
@blakjack888 can you paste the error you have faced in GCC ?
< blakjak888>
1> /d/Users/David/AppData/Local/Temp/cc0ly2VV.s : Fatal error : can't close StockPriceLSTM.o: file too big
< blakjak888>
sorry, did not realise there was so much there!
kshitijandmojoG4 has quit [Ping timeout: 244 seconds]
RishabhGarg108Gi has quit [Ping timeout: 246 seconds]
TejasviGuptaGitt has quit [Ping timeout: 244 seconds]
TanayMehtaGitter has quit [Ping timeout: 244 seconds]
jonpsy[m] has quit [Ping timeout: 244 seconds]
AakashkaushikGit has quit [Ping timeout: 244 seconds]
franciscoferioli has quit [Ping timeout: 244 seconds]
AryamanBhagatGit has quit [Ping timeout: 244 seconds]
GauravTirodkar[m has quit [Ping timeout: 244 seconds]
sreenik[m] has quit [Ping timeout: 244 seconds]
GitterIntegratio has quit [Ping timeout: 244 seconds]
MrityunjayTripat has quit [Ping timeout: 246 seconds]
KumarArnav[m] has quit [Ping timeout: 246 seconds]
AbdullahKhilji[m has quit [Ping timeout: 246 seconds]
birm[m] has quit [Ping timeout: 240 seconds]
JatoJoseph[m] has quit [Ping timeout: 244 seconds]
abernauer[m] has quit [Ping timeout: 244 seconds]
M2foryou[m] has quit [Ping timeout: 244 seconds]
say4n has quit [Ping timeout: 244 seconds]
sakshamb189[m] has quit [Ping timeout: 244 seconds]
Manav-KumarGitte has quit [Ping timeout: 244 seconds]
MostafaNabiehGit has quit [Ping timeout: 244 seconds]
AniThoGitter[m] has quit [Ping timeout: 244 seconds]
RakeshBhugraGitt has quit [Ping timeout: 244 seconds]
AbhinavGudipati[ has quit [Ping timeout: 244 seconds]
sailor[m] has quit [Ping timeout: 244 seconds]
jacob-earleGitte has quit [Ping timeout: 244 seconds]
outmanipulateGit has quit [Ping timeout: 244 seconds]
AnjishnuGitter[m has quit [Ping timeout: 244 seconds]
PulkitGitter[m] has quit [Ping timeout: 244 seconds]
HavshxjdnaggzGit has quit [Ping timeout: 244 seconds]
Cadair has quit [Ping timeout: 246 seconds]
zoq[m] has quit [Ping timeout: 240 seconds]
PratikPriyadars4 has quit [Ping timeout: 244 seconds]
RoHitRushilGitte has quit [Ping timeout: 244 seconds]
kshitijandmojoG4 has joined #mlpack
RishabhGarg108Gi has joined #mlpack
TejasviGuptaGitt has joined #mlpack
jonpsy[m] has joined #mlpack
AryamanBhagatGit has joined #mlpack
TanayMehtaGitter has joined #mlpack
AakashkaushikGit has joined #mlpack
sreenik[m] has joined #mlpack
GauravTirodkar[m has joined #mlpack
MostafaNabiehGit has joined #mlpack
AniThoGitter[m] has joined #mlpack
AnjishnuGitter[m has joined #mlpack
sailor[m] has joined #mlpack
HavshxjdnaggzGit has joined #mlpack
AbhinavGudipati[ has joined #mlpack
jacob-earleGitte has joined #mlpack
Manav-KumarGitte has joined #mlpack
PulkitGitter[m] has joined #mlpack
say4n has joined #mlpack
RakeshBhugraGitt has joined #mlpack
outmanipulateGit has joined #mlpack
sakshamb189[m] has joined #mlpack
MrityunjayTripat has joined #mlpack
KumarArnav[m] has joined #mlpack
< shrit[m]>
@blakjack888 are you using mingw ?
AbdullahKhilji[m has joined #mlpack
birm[m] has joined #mlpack
JatoJoseph[m] has joined #mlpack
abernauer[m] has joined #mlpack
M2foryou[m] has joined #mlpack
Cadair has joined #mlpack
PratikPriyadars4 has joined #mlpack
RoHitRushilGitte has joined #mlpack
zoq[m] has joined #mlpack
franciscoferioli has joined #mlpack
< AakashkaushikGit>
hey, can someone give a look to this, https://github.com/Aakash-kaushik/ann_exp as i have `Linear` layer class derived from the `Layer` base class and so the functions defined as virtual in the base class should be implicilty virtual in the `Linear` class but when i explicitly mention them as virtual they error out with `templates may not be ‘virtual’`, which is understanble but why only when i mention it and if i
< AakashkaushikGit>
the parameter in the class then i have to edit a lot more code, is there any other way to do it ?
< rcurtin>
AakashkaushikGit: templatize the base layer with `InputDataType` and `OutputDataType`, then use those parameters in the functions `Forward()`, `Backward()`, etc.
< rcurtin>
so, there should be no need for `Forward()` to have template parameters of its own
< AakashkaushikGit>
hey @rcurtin i have done something similar now, the base class has a template param `eT` which is by default a `double` and the functions such as `Forward()` use `arma::Mat<et>` which if i remember correctly is equivalent to `arma::mat`.
< rcurtin>
yes, try templatizing the base layer with `InputDataType` and `OutputDataType` instead
< rcurtin>
the issue is that you cannot have a templatized virtual member function
< rcurtin>
however, you can have a virtual member function of a templatized class
< rcurtin>
therefore, all template members need to be at the class level, not the method level, and you'll have to find some way to refactor the code to do that
< rcurtin>
what I suggested is just one way to do it, but there are other ways too
< rcurtin>
after all, this is just an experiment, so do whichever way you find the most convenient :)
< AakashkaushikGit>
@rcurtin thanks for the guidance. :D
< rcurtin>
sure, happy to help
ib07 has quit [Ping timeout: 246 seconds]
ib07 has joined #mlpack
ib07 has quit [Max SendQ exceeded]
ib07 has joined #mlpack
ib07 has quit [Max SendQ exceeded]
ib07 has joined #mlpack
ib07 has quit [Ping timeout: 256 seconds]
ImQ009 has quit [Read error: Connection reset by peer]
ib07 has joined #mlpack
< abernauer[m]>
Ok draft of that cfmovielens notebook for the R bindings is done.
< shrit[m]>
abernauer: great, thanks, it will be the first R example in mlpack I think
< abernauer[m]>
It wasn't a ton of effort just adapted some Python code to R code and expanded on the quick start example.
< rcurtin>
shrit[m]: cleaning up issues and PRs... you are my hero :-D
< shrit[m]>
You are most welcome :-D
ib07 has quit [Quit: No Ping reply in 180 seconds.]