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/
< yashwants19[m]> [zoq](https://matrix.to/#/@freenode_zoq:matrix.org) can you also configure azure pipeline?
< yashwants19[m]> As it is also running for branch push.
< yashwants19[m]> I guess we must run pipeline for master only.
< zoq> I'm not sure I get what you mean.
gtank___ has quit [Ping timeout: 264 seconds]
< zoq> Right now azure pipeline runs for master and PR's.
< zoq> Or I guess I should say for each branch.
gtank___ has joined #mlpack
< yashwants19[m]> I guess azure pipeline is running for push(mlpack/master and mlpack/branchs), pull_request on master and release.
< zoq> Yes
< yashwants19[m]> I guess we must turn off the pipeline for push mlpack/branch.
< yashwants19[m]> Or this is fine.
< zoq> To solve the mail problem?
< yashwants19[m]> For these redundant runs.
< zoq> yashwants19[m]: Ahh, I mean it doesn't really matter that much, but we could configure it to run on master and PR's.
< zoq> It's only twice a month right?
< yashwants19[m]> Yes
< yashwants19[m]> 1st and 17th at 10:00 UTC
< yashwants19[m]> Today I manually run those workflows.
< zoq> If someone likes to open a PR to fix this, happy to review :)
< zoq> Right, the schedule should work just fine, fingers crossed.
< yashwants19[m]> Same here.
< yashwants19[m]> Fingers crossed 🤞
ib07 has quit [Ping timeout: 240 seconds]
ib07 has joined #mlpack
ib07 has quit [Max SendQ exceeded]
ib07 has joined #mlpack
ib07_ has joined #mlpack
ib07 has quit [Ping timeout: 272 seconds]
The_LoudSpeaker has joined #mlpack
The_LoudSpeaker has quit [Changing host]
The_LoudSpeaker has joined #mlpack
ImQ009 has joined #mlpack
< NippunSharmaGitt> Hey, after building mlpack from source (in windows 10) I successfully completed [this](https://www.mlpack.org/doc/mlpack-git/doxygen/sample_ml_app.html) tutorial. Then I tried to make my own application in c++ based on the tutorial (but using linear regression instead of random forest). During that process I encountered these errors:
< NippunSharmaGitt> error LNK2019: unresolved external symbol "bool __cdecl mlpack::data::Load<double>(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class arma::Mat<double> &,bool,bool,enum arma::file_type)" (??$Load@N@data@mlpack@@YA_NAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAV?$Mat@N@arma@@_N2W4file_type@5@@Z) referenced in function main
< NippunSharmaGitt> error LNK2019: unresolved external symbol "public: double __cdecl mlpack::regression::LinearRegression::Train(class arma::Mat<double> const &,class arma::Row<double> const &,bool)" (?Train@LinearRegression@regression@mlpack@@QEAANAEBV?$Mat@N@arma@@AEBV?$Row@N@5@_N@Z) referenced in function main
< NippunSharmaGitt> Can someone help here ?
< NippunSharmaGitt> 'error LNK2019: unresolved external symbol "public: double __cdecl mlpack::regression::LinearRegression::Train(class arma::Mat<double> const &,class arma::Row<double> const &,bool)" (?Train@LinearRegression@regression@mlpack@@QEAANAEBV?$Mat@N@arma@@AEBV?$Row@N@5@_N@Z) referenced in function main'
< NippunSharmaGitt> `error LNK2019: unresolved external symbol "public: double __cdecl mlpack::regression::LinearRegression::Train(class arma::Mat<double> const &,class arma::Row<double> const &,bool)" (?Train@LinearRegression@regression@mlpack@@QEAANAEBV?$Mat@N@arma@@AEBV?$Row@N@5@_N@Z) referenced in function main`
< NippunSharmaGitt> `error LNK2019: unresolved external symbol "bool __cdecl mlpack::data::Load<double>(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class arma::Mat<double> &,bool,bool,enum arma::file_type)" (??$Load@N@data@mlpack@@YA_NAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAV?$Mat@N@arma@@_N2W4file_type@5@@Z) referenced in function main`
< NippunSharmaGitt> can someone help here ?
canewsin[m] has quit [Quit: Idle for 30+ days]
anjishnu[m] has quit [Quit: Idle for 30+ days]
chopper_inbound[ has quit [Quit: Idle for 30+ days]
jonpsy[m] has quit [Quit: Idle for 30+ days]
rcurtin[m] has quit [Quit: Idle for 30+ days]
sakshamb189[m] has quit [Quit: Idle for 30+ days]
M2foryou[m] has quit [Quit: Idle for 30+ days]
SeverinoTessarin has joined #mlpack
< SeverinoTessarin> I have a 4GB CSV and I am trying to split into the usual test and training files with ml_preprocess_split but I get the following error message:
< SeverinoTessarin> error: arma::memory::acquire(): out of memory
< SeverinoTessarin> /c/mlpack> mlpack_preprocess_split.exe --version
< SeverinoTessarin> Split Data: part of mlpack git-a8af488.
< SeverinoTessarin> The MLpack executables are limited by the RAM?
< zoq> SeverinoTessarin: To use split, your data has to fit into memory, twice. The original and the splitted one.
< zoq> SeverinoTessarin: Maybe you can increase SWAP?
< SeverinoTessarin> In Windows?
< zoq> I think in windows you can increase virtual memory as well, but not sure.
< SeverinoTessarin> Huge disappointment tho
< zoq> SeverinoTessarin: Another option would be to do the split inplace.
< zoq> SeverinoTessarin: So shuffel your data, with arma::shuffel(data);
< zoq> SeverinoTessarin: And pass the subset to the method with data.cols(0, trainSize - 1); to the method.
< SeverinoTessarin> Yes, but I would prefer to use the executables API.
< zoq> I see, so ideally you like to create the train/test set and free the input set at the same time.
< SeverinoTessarin> if possible, yes.
< zoq> that is an interesting challenge, and we don't have support for that, but if you like you can open an issue, and I guess someone will pick it up.
< SeverinoTessarin> Do you know if this limitation applies to the decision tree classifier as well?
< zoq> All methods take data per reference, so you don't have to keep the data in memory twice.
< SeverinoTessarin> I will try to open an issue on Github.
< zoq> Sounds good, thanks.
ib07_ has quit [Ping timeout: 260 seconds]
ib07 has joined #mlpack
say4n has quit [Quit: Idle for 30+ days]
zoq has quit [Remote host closed the connection]
yourname_ has joined #mlpack
yourname_ is now known as zoq
zoq has quit [Client Quit]
yourname_ has joined #mlpack
yourname_ is now known as zoq
ib07 has quit [Ping timeout: 272 seconds]
ib07 has joined #mlpack
ib07 has quit [Ping timeout: 260 seconds]
ib07 has joined #mlpack
ImQ009 has quit [Quit: Leaving]
ib07 has quit [Ping timeout: 260 seconds]
zoq has quit [Remote host closed the connection]
ib07 has joined #mlpack
yourname_ has joined #mlpack
yourname_ is now known as zoq
ib07 has quit [Ping timeout: 260 seconds]
zoq has quit [Remote host closed the connection]
ib07 has joined #mlpack
ib07 has quit [Max SendQ exceeded]
ib07 has joined #mlpack
ib07 has quit [Max SendQ exceeded]
ib07 has joined #mlpack
yourname_ has joined #mlpack
yourname_ is now known as zoq