2018-11-12 22:39
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/
00:58
<
brongulusGitter[ >
Wouldn't it be better if you opened a PR and shared a link to that, would make for better and easier code reviews too?
01:14
<
ShahAnwaarKhalid >
I was actually talking about something that's already been implemented.
05:41
<
jonpsy[m] >
is there a way to convert ```std::vector<arma::Col<ElemType>>``` to ```arma::Mat<ElemType>``` without copying memory?
06:14
Shadow3049 has joined #mlpack
06:15
Shadow3049 has quit [Client Quit]
06:16
Shadow3049 has joined #mlpack
06:22
Shadow3049 has quit [Quit: Ping timeout (120 seconds)]
06:23
Shadow3049 has joined #mlpack
06:26
<
Shadow3049 >
Hi, I am shivank. Is anyone working on the parallel profiling project idea?
06:26
<
Shadow3049 >
If so, what tool are you using for profiling?
06:31
Shadow3049 has quit [Quit: Ping timeout (120 seconds)]
06:32
Shadow3049 has joined #mlpack
06:34
Shadow304997 has joined #mlpack
06:34
Shadow3049 has quit [Client Quit]
06:34
Shadow304997 has quit [Client Quit]
06:35
Shadow3049 has joined #mlpack
07:13
Shadow3049 has quit [Quit: Connection closed]
07:33
ib07 has joined #mlpack
08:20
ImQ009 has joined #mlpack
09:27
ib07 has quit [Ping timeout: 256 seconds]
09:50
ib07 has joined #mlpack
10:24
<
jeffin143[m] >
Rishabh Garg (Gitter): haha , no I just brought it here so that everyone can have a smile about it
10:24
<
jeffin143[m] >
There are many instances before where we have talked about the huge amount of ram mlpack takes 😂😂😂
10:25
<
jeffin143[m] >
So there is no hurt in it
10:36
ib07 has quit [Ping timeout: 256 seconds]
10:37
ib07 has joined #mlpack
11:09
ib07 has quit [Ping timeout: 264 seconds]
12:13
ib07 has joined #mlpack
13:33
i8hantanu has joined #mlpack
13:33
i8hantanu has left #mlpack []
14:28
<
ABHINAVANAND[m] >
<ABHINAVANAND[m] "I was going through the code of "> `arma::mat input = arma::mat(28, 1);`
14:33
<
zoq >
jonpsy[m]: You can use stdvector.data() and then you can use the advanced constructor.
14:35
<
zoq >
ShahAnwaarKhalid: Can you add a comment on the dual optimizer PR, that way I don't miss to take a look :)
14:36
<
jonpsy[m] >
I'll probably have to wrap that in a class
14:38
<
ShahAnwaarKhalid >
zoq: I opened an issue. Maybe, we can discuss there?
14:38
<
rcurtin[m] >
jonpsy: the only problem is, to convert to a `Mat` without copying memory, we would need the guarantee that the data of every `arma::Col<>` is contiguous---and we don't have that guarantee. so unless you were able to set up the `std::vector` very specifically so that each `Col` was using contiguous blocks of memory, then a copy would be unavoidable
14:40
<
jonpsy[m] >
<rcurtin[m] "jonpsy: the only problem is, to "> There's goes my dream of micro-optimization :)
14:40
<
jonpsy[m] >
* There goes my dream of micro-optimization :)
14:40
<
rcurtin[m] >
yeah, I know how you feel, I have been bitten by that too many times...
14:41
<
rcurtin[m] >
if I remember right, std::vector doesn't make any guarantees of data being contiguous either, so even wrapping an Armadillo matrix around the memory of a `std::vector<double>` is not safe across all platforms... but I may not be remembering exactly right
14:42
<
jonpsy[m] >
Yeah std::array is our buddy
14:42
<
jonpsy[m] >
Although, if we preallocate, will it be contiguous?
14:42
<
jonpsy[m] >
Argh.... I think it's giddied up, might confused people who would read code
14:43
<
rcurtin[m] >
I'm not sure what guarantees preallocation would give; we'd have to read the standard to see if we can count on it
14:43
<
jonpsy[m] >
Okay here's an idea, I'm working hard on my proposal atm (codes and all) when I'm done I'll start a PR
14:44
<
jonpsy[m] >
So maybe we can optimize when we have better context of the whole algorithm.
15:06
<
zoq >
ABHINAVANAND[m]: Same thing for stride yes, but we don't support asymetric stride right now.
15:53
<
jonpsy[m] >
> if I remember right, std::vector doesn't make any guarantees of data being contiguous either, so even wrapping an Armadillo matrix around the memory of a `std::vector<double>` is not safe across all platforms... but I may not be remembering exactly right
15:53
<
jonpsy[m] >
rcurtin So I did some digging. It seems the standard do [guarantee](
https://stackoverflow.com/a/849190) it being contiguous. I think it makes sense because, as you said, converting ```Col``` is possible only if you can guarantee your elements are contigous.
15:58
<
rcurtin[m] >
that's good to know, but even if you have a `std::vector<arma::vec>`, the memory for each `arma::vec` isn't contiguous, because each `arma::vec` allocates its own memory somewhere else
15:58
<
rcurtin[m] >
so this does mean that you can take a `std::vector<double>` and wrap an `arma::vec` around it
15:58
<
rcurtin[m] >
but... ownership of the memory gets a little ugly... I don't know that you can tell a `std::vector<double>` that it no longer owns its memory... so the `arma::vec` could only be used if we knew that the `std::vector<double>` would never be freed or go out of scope
15:59
<
jonpsy[m] >
hm, a lot to take in
16:00
<
zoq >
What is the reason to use std instead of arma in the first place?
16:01
<
jonpsy[m] >
Personally, my first rule of work is to use library provided functions over any other
16:01
<
jonpsy[m] >
BUT, I'm using vector because columns are randomly dropped and inserted in the algo
16:02
<
jonpsy[m] >
* BUT, I'm using std::vector because columns are randomly dropped and inserted in the algo
16:02
<
jonpsy[m] >
* Personally, my first rule of work is to use library-provided-functions over any other
16:03
travis-ci has joined #mlpack
16:03
<
travis-ci >
mlpack/ensmallen#1271 (2.16.2 - 259da3d : Ryan Curtin): The build passed.
16:03
travis-ci has left #mlpack []
16:04
<
zoq >
But I guess your type is std::vector<arma::mat>?
16:05
<
jonpsy[m] >
(its mostly vec so i use them interchangeably :) )
16:05
<
zoq >
I guess I would have to look into the code, but wondering why you would have to convert it later.
16:06
<
jonpsy[m] >
i was just discussin a possibility, (for SPEA-II) haven't written a concrete code yet
16:06
<
rcurtin[m] >
Yeah, I would generally recommend using an `arma::cube` instead of `std::vector` where you can
16:08
<
jonpsy[m] >
can i drop columns from a random index?
16:08
<
jonpsy[m] >
nvm, i'll figure that out. Interesting discussion though :)
16:28
jnaman has joined #mlpack
16:34
jnaman has quit [Quit: Connection closed]
17:23
rcurtin has joined #mlpack
17:24
MatheusAlcntaraS has quit [Ping timeout: 240 seconds]
17:24
SeverinoTessarin has quit [Ping timeout: 240 seconds]
17:24
hemal[m] has quit [Ping timeout: 240 seconds]
17:24
AvikantSrivasta7 has quit [Ping timeout: 240 seconds]
17:24
Kaushalc64[m] has quit [Ping timeout: 240 seconds]
17:24
AlanSanchezGitte has quit [Ping timeout: 240 seconds]
17:25
TejasviGuptaGitt has quit [Ping timeout: 244 seconds]
17:25
alan__[m] has quit [Ping timeout: 244 seconds]
17:25
TanayMehtaGitter has quit [Ping timeout: 244 seconds]
17:25
ManishKausikH[m] has quit [Ping timeout: 244 seconds]
17:25
CssTejaGitter[m] has quit [Ping timeout: 244 seconds]
17:25
AbhishekMishra[m has quit [Ping timeout: 244 seconds]
17:25
DirkEddelbuette4 has quit [Ping timeout: 244 seconds]
17:25
KumarArnav[m] has quit [Ping timeout: 244 seconds]
17:25
JoelJosephGitter has quit [Ping timeout: 244 seconds]
17:25
datarobot[m] has quit [Ping timeout: 244 seconds]
17:25
M7IZAAIHK5 has quit [Ping timeout: 240 seconds]
17:40
_slack_mlpack_U0 has joined #mlpack
17:42
rcurtin_ has joined #mlpack
17:42
braceletboy has joined #mlpack
17:44
ib07 has joined #mlpack
17:44
petris has joined #mlpack
17:52
_slack_mlpack_U4 has joined #mlpack
17:55
sakshamb189[m] has joined #mlpack
18:04
_slack_mlpack_U0 has joined #mlpack
18:04
_slack_mlpack_U0 has quit [Changing host]
18:04
_slack_mlpack_U0 has joined #mlpack
18:06
braceletboy has joined #mlpack
18:06
gtank___ has joined #mlpack
18:10
_slack_mlpack_U0 has joined #mlpack
18:13
mrshu has joined #mlpack
18:13
YashMishraGitter has joined #mlpack
18:13
AryamanBhagatGit has joined #mlpack
18:13
DirkEddelbuettel has joined #mlpack
18:13
sdev_7211[m] has joined #mlpack
18:13
PulkitGitter[m] has joined #mlpack
18:13
tobelegitGitter[ has joined #mlpack
18:13
OleksandrNikolsk has joined #mlpack
18:13
FranchisNSaikia[ has joined #mlpack
18:13
Cadair has joined #mlpack
18:13
NishantNandanGit has joined #mlpack
18:13
CharanpreetSingh has joined #mlpack
18:13
yashwants19[m] has joined #mlpack
18:13
muis[m] has joined #mlpack
18:13
yfgeng6Gitter[m] has joined #mlpack
18:13
_slack_mlpack_U7 has joined #mlpack
18:13
robotcatorGitter has joined #mlpack
18:13
ronakypatel[m] has joined #mlpack
18:13
RiturajDuttaGitt has joined #mlpack
18:13
saksham189Gitter has joined #mlpack
18:13
MatheusAlcntaraS has joined #mlpack
18:13
YASH01009Gitter[ has joined #mlpack
18:13
ManiTyagiGitter[ has joined #mlpack
18:13
AdityaKandekarGi has joined #mlpack
18:13
GauravGhati[m] has joined #mlpack
18:13
DillonKipke[m] has joined #mlpack
18:13
sailor[m] has joined #mlpack
18:13
AniThoGitter[m] has joined #mlpack
18:13
KshitijAggarwal[ has joined #mlpack
18:13
SiddhantJain[m] has joined #mlpack
18:13
aadarsh-asthanaG has joined #mlpack
18:13
AakashkaushikGit has joined #mlpack
18:13
SlackIntegration has joined #mlpack
18:13
DavidFaragoGitte has joined #mlpack
18:13
AlanSanchezGitte has joined #mlpack
18:13
MayankRaj[m] has joined #mlpack
18:13
_slack_mlpack_10 has joined #mlpack
18:13
RakeshBhugraGitt has joined #mlpack
18:13
AbdullahKhilji[m has joined #mlpack
18:13
VanshBansalGitte has joined #mlpack
18:13
KritikaGuptaGitt has joined #mlpack
18:13
Param-29Gitter[m has joined #mlpack
18:13
AnjishnuGitter[m has joined #mlpack
18:13
LolitaNazarov[m] has joined #mlpack
18:13
AnushKiniGitter[ has joined #mlpack
18:13
abernauer[m] has joined #mlpack
18:13
birm[m] has joined #mlpack
18:13
AbhinavvermaGitt has joined #mlpack
18:13
SoumyadipSarkar[ has joined #mlpack
18:13
PranavReddyP16Gi has joined #mlpack
18:13
SirishGitter[m] has joined #mlpack
18:13
ABHINAVANAND[m] has joined #mlpack
18:13
SuryamArnavKalra has joined #mlpack
18:13
_slack_mlpack_13 has joined #mlpack
18:13
siddhant_jain[m] has joined #mlpack
18:13
bisakh[m] has joined #mlpack
18:13
prateek93a[m] has joined #mlpack
18:13
VedantaJha[m] has joined #mlpack
18:13
KrishnaSashank[m has joined #mlpack
18:13
RV784Gitter[m] has joined #mlpack
18:13
RoHitRushilGitte has joined #mlpack
18:13
say4n has joined #mlpack
18:13
Amankumar[m] has joined #mlpack
18:13
SriramSKGitter[m has joined #mlpack
18:13
AniketKhandagale has joined #mlpack
18:13
oksky[m] has joined #mlpack
18:13
thecodeeagleGitt has joined #mlpack
18:13
HavshxjdnaggzGit has joined #mlpack
18:13
GitterIntegratio has joined #mlpack
18:13
rcurtin[m] has joined #mlpack
18:13
JatoJoseph[m] has joined #mlpack
18:13
ArunavShandeelya has joined #mlpack
18:13
_slack_mlpack_16 has joined #mlpack
18:13
EshitaBhargavaGi has joined #mlpack
18:13
zoq[m] has joined #mlpack
18:13
DirkEddelbuette4 has joined #mlpack
18:13
Ashishkumarpanda has joined #mlpack
18:13
AndrewSpottGitte has joined #mlpack
18:13
AbhinavGudipati[ has joined #mlpack
18:13
ShahAnwaarKhalid has joined #mlpack
18:13
VivekTalwarGitte has joined #mlpack
18:13
iamarchit123Gitt has joined #mlpack
18:13
NitikJain[m] has joined #mlpack
18:13
ShivamShaurya[m] has joined #mlpack
18:13
ChaithanyaNaik[m has joined #mlpack
18:13
shrit[m] has joined #mlpack
18:13
ka_shGitter[m] has joined #mlpack
18:13
RishabhGargGitte has joined #mlpack
18:13
_slack_mlpack_19 has joined #mlpack
18:13
SaraanshTandonGi has joined #mlpack
18:13
tarunjarvis5Gitt has joined #mlpack
18:13
anjishnu[m] has joined #mlpack
18:13
HrithikNambiar[m has joined #mlpack
18:13
ArijitRoyGitter[ has joined #mlpack
18:13
Saksham[m] has joined #mlpack
18:13
GauravSinghGitte has joined #mlpack
18:13
AbhishekNimje[m] has joined #mlpack
18:13
AvikantSrivasta4 has joined #mlpack
18:13
TaapasAgrawalGit has joined #mlpack
18:13
Eddie-XiaoGitter has joined #mlpack
18:13
jeffinsamGitter[ has joined #mlpack
18:13
AmeetKumarRanaGi has joined #mlpack
18:13
brongulusGitter[ has joined #mlpack
18:13
AyushKumarLavani has joined #mlpack
18:13
HemalMamtora[m] has joined #mlpack
18:13
rcurtin[m]1 has joined #mlpack
18:13
geek-2002Gitter[ has joined #mlpack
18:13
HARSHCHAUHAN[m] has joined #mlpack
18:13
Kaushalc64[m] has joined #mlpack
18:13
OmarWagih1Gitter has joined #mlpack
18:13
FrancoisBerrierG has joined #mlpack
18:13
alan__[m] has joined #mlpack
18:13
GopiManoharTatir has joined #mlpack
18:13
RudraPatil[m] has joined #mlpack
18:13
_slack_mlpack_22 has joined #mlpack
18:13
LokeshJawale[m] has joined #mlpack
18:13
bash[m] has joined #mlpack
18:13
zoq[m]1 has joined #mlpack
18:13
GauravTirodkar[m has joined #mlpack
18:13
kaushal[m] has joined #mlpack
18:13
pranav-mscGitter has joined #mlpack
18:13
UmarGitter[m] has joined #mlpack
18:13
RishabhGoel[m] has joined #mlpack
18:13
AlexNguyen[m] has joined #mlpack
18:13
mlpack-inviter[m has joined #mlpack
18:13
ManishKausikH[m] has joined #mlpack
18:13
gitter-badgerThe has joined #mlpack
18:13
_slack_mlpack_25 has joined #mlpack
18:13
techsunny[m] has joined #mlpack
18:13
TanayMehtaGitter has joined #mlpack
18:13
PratikPriyadarsa has joined #mlpack
18:13
_slack_mlpack_28 has joined #mlpack
18:13
Prometheus[m] has joined #mlpack
18:13
NippunSharmaGitt has joined #mlpack
18:13
hemal[m] has joined #mlpack
18:13
khimrajGitter[m] has joined #mlpack
18:13
AlexNguyenGitter has joined #mlpack
18:13
RohitKartikGitte has joined #mlpack
18:13
JoelJosephGitter has joined #mlpack
18:13
ABoodhayanaSVish has joined #mlpack
18:13
ZanHuang[m] has joined #mlpack
18:13
AtharvaKhandaitG has joined #mlpack
18:13
jeffin143[m] has joined #mlpack
18:13
AtreyaMajumdarGi has joined #mlpack
18:13
AmanKashyap[m] has joined #mlpack
18:13
HimanshuPathakGi has joined #mlpack
18:13
_slack_mlpack_31 has joined #mlpack
18:13
TejasviGuptaGitt has joined #mlpack
18:13
MostafaNabiehGit has joined #mlpack
18:13
PrinceGuptaGitte has joined #mlpack
18:13
kshitijandmojoGi has joined #mlpack
18:13
TathagataRaha[m] has joined #mlpack
18:13
AnirudhSinghChau has joined #mlpack
18:13
kunal12298Gitter has joined #mlpack
18:13
jonpsy[m] has joined #mlpack
18:13
dkipke[m] has joined #mlpack
18:13
EmmanuelLykosGit has joined #mlpack
18:13
SergioMoralesE[m has joined #mlpack
18:13
Gulshan[m] has joined #mlpack
18:13
turska79Gitter[m has joined #mlpack
18:13
KumarArnav[m] has joined #mlpack
18:13
AbishaiEbenezerG has joined #mlpack
18:13
rishishounakGitt has joined #mlpack
18:13
jjb[m] has joined #mlpack
18:13
ShubhamAbhangGit has joined #mlpack
18:13
AbhinavTalariGit has joined #mlpack
18:13
siddhant2001Gitt has joined #mlpack
18:13
PulkitgeraGitter has joined #mlpack
18:13
AyushSingh[m] has joined #mlpack
18:13
RyanBirminghamGi has joined #mlpack
18:13
Valliappan_CAGit has joined #mlpack
18:13
AnmolpreetSinghG has joined #mlpack
18:13
_slack_mlpack_34 has joined #mlpack
18:13
jacob-earleGitte has joined #mlpack
18:13
AbhishekMishra[m has joined #mlpack
18:13
MrityunjayTripat has joined #mlpack
18:13
SaiVamsi[m] has joined #mlpack
18:13
_slack_mlpack_37 has joined #mlpack
18:13
_slack_mlpack_40 has joined #mlpack
18:13
_slack_mlpack_43 has joined #mlpack
18:13
kunalsingh2002Gi has joined #mlpack
18:13
kartikdutt18Gitt has joined #mlpack
18:13
EL-SHREIFGitter[ has joined #mlpack
18:13
_slack_mlpack_46 has joined #mlpack
18:13
_slack_mlpack_49 has joined #mlpack
18:14
Manav-KumarGitte has joined #mlpack
18:14
MohomedShalik[m] has joined #mlpack
18:14
pruthvirajjadhav has joined #mlpack
18:14
PrateekGuptaGitt has joined #mlpack
18:14
DivyanshKumar[m] has joined #mlpack
18:14
datarobot[m] has joined #mlpack
18:14
AvikantSrivasta7 has joined #mlpack
18:14
Gauravkumar[m] has joined #mlpack
18:14
VSaicharanGitter has joined #mlpack
18:14
CssTejaGitter[m] has joined #mlpack
18:14
kaushal07wickGit has joined #mlpack
18:14
ShikharJaiswalGi has joined #mlpack
18:14
ryan[m]1 has joined #mlpack
18:14
SeverinoTessarin has joined #mlpack
18:14
TrinhNgo[m] has joined #mlpack
18:14
GauravKumarGitte has joined #mlpack
18:17
_slack_mlpack_31 has joined #mlpack
18:17
_slack_mlpack_28 has joined #mlpack
18:18
7IZAAAABA has joined #mlpack
18:18
7IZAAAABA has quit [Client Quit]
18:18
AbdullahKhilji[m has joined #mlpack
18:18
yashwants19[m] has joined #mlpack
18:18
ka_shGitter[m] has joined #mlpack
18:18
Valliappan_CAGit has joined #mlpack
18:18
VanshBansalGitte has joined #mlpack
18:18
RakeshBhugraGitt has joined #mlpack
18:18
gitter-badgerThe has joined #mlpack
18:18
AniketKhandagale has joined #mlpack
18:18
VivekTalwarGitte has joined #mlpack
18:19
AnmolpreetSinghG has joined #mlpack
18:19
_slack_mlpack_24 has joined #mlpack
18:19
ShikharJaiswalGi has joined #mlpack
18:19
sakshamb189[m] has joined #mlpack
18:19
iamarchit123Gitt has joined #mlpack
18:19
ABoodhayanaSVish has joined #mlpack
18:19
KritikaGuptaGitt has joined #mlpack
18:19
AvikantSrivasta4 has joined #mlpack
18:19
SriramSKGitter[m has joined #mlpack
18:19
AmanKashyap[m] has joined #mlpack
18:19
PratikPriyadarsa has joined #mlpack
18:19
HimanshuPathakGi has joined #mlpack
18:19
jjb[m] has joined #mlpack
18:19
CharanpreetSingh has joined #mlpack
18:19
NishantNandanGit has joined #mlpack
18:19
siddhant_jain[m] has joined #mlpack
18:19
EshitaBhargavaGi has joined #mlpack
18:19
Cadair has joined #mlpack
18:20
techsunny[m] has joined #mlpack
18:28
_slack_mlpack_31 has quit [Ping timeout: 248 seconds]
18:28
_slack_mlpack_U4 has quit [Ping timeout: 248 seconds]
18:28
Gauravkumar[m] has quit [Ping timeout: 252 seconds]
18:28
AvikantSrivasta7 has quit [Ping timeout: 245 seconds]
18:28
DivyanshKumar[m] has quit [Ping timeout: 245 seconds]
18:28
kaushal07wickGit has quit [Ping timeout: 245 seconds]
18:28
_slack_mlpack_28 has quit [Ping timeout: 258 seconds]
18:28
CssTejaGitter[m] has quit [Ping timeout: 258 seconds]
18:29
VSaicharanGitter has quit [Ping timeout: 276 seconds]
18:29
datarobot[m] has quit [Ping timeout: 276 seconds]
18:29
PrateekGuptaGitt has quit [Ping timeout: 276 seconds]
18:29
NishantNandanGit has quit [Ping timeout: 245 seconds]
18:29
Cadair has quit [Ping timeout: 258 seconds]
18:29
GitterIntegratio has quit [Ping timeout: 258 seconds]
18:29
gitter-badgerThe has quit [Ping timeout: 248 seconds]
18:29
mrshu has quit [Ping timeout: 248 seconds]
18:29
siddhant_jain[m] has quit [Ping timeout: 252 seconds]
18:29
SlackIntegration has quit [Ping timeout: 258 seconds]
18:29
AnmolpreetSinghG has quit [Ping timeout: 245 seconds]
18:29
_slack_mlpack_24 has quit [Ping timeout: 245 seconds]
18:29
Valliappan_CAGit has quit [Ping timeout: 245 seconds]
18:29
TrinhNgo[m] has quit [Ping timeout: 245 seconds]
18:29
SeverinoTessarin has quit [Ping timeout: 245 seconds]
18:29
Manav-KumarGitte has quit [Ping timeout: 245 seconds]
18:29
_slack_mlpack_46 has quit [Ping timeout: 245 seconds]
18:29
EL-SHREIFGitter[ has quit [Ping timeout: 245 seconds]
18:29
kunalsingh2002Gi has quit [Ping timeout: 245 seconds]
18:29
kartikdutt18Gitt has quit [Ping timeout: 245 seconds]
18:29
RyanBirminghamGi has quit [Ping timeout: 245 seconds]
18:29
ShubhamAbhangGit has quit [Ping timeout: 245 seconds]
18:29
jonpsy[m] has quit [Ping timeout: 245 seconds]
18:29
dkipke[m] has quit [Ping timeout: 245 seconds]
18:29
TejasviGuptaGitt has quit [Ping timeout: 245 seconds]
18:29
ZanHuang[m] has quit [Ping timeout: 245 seconds]
18:29
AtharvaKhandaitG has quit [Ping timeout: 245 seconds]
18:29
Prometheus[m] has quit [Ping timeout: 245 seconds]
18:29
NippunSharmaGitt has quit [Ping timeout: 245 seconds]
18:29
hemal[m] has quit [Ping timeout: 245 seconds]
18:29
_slack_mlpack_25 has quit [Ping timeout: 245 seconds]
18:29
zoq[m]1 has quit [Ping timeout: 245 seconds]
18:29
brongulusGitter[ has quit [Ping timeout: 245 seconds]
18:29
AyushKumarLavani has quit [Ping timeout: 245 seconds]
18:29
HemalMamtora[m] has quit [Ping timeout: 245 seconds]
18:29
rcurtin[m]1 has quit [Ping timeout: 245 seconds]
18:29
TaapasAgrawalGit has quit [Ping timeout: 245 seconds]
18:29
RishabhGargGitte has quit [Ping timeout: 245 seconds]
18:29
_slack_mlpack_19 has quit [Ping timeout: 245 seconds]
18:29
_slack_mlpack_16 has quit [Ping timeout: 245 seconds]
18:29
Amankumar[m] has quit [Ping timeout: 245 seconds]
18:29
bisakh[m] has quit [Ping timeout: 245 seconds]
18:29
prateek93a[m] has quit [Ping timeout: 245 seconds]
18:29
VedantaJha[m] has quit [Ping timeout: 245 seconds]
18:29
SoumyadipSarkar[ has quit [Ping timeout: 245 seconds]
18:29
Param-29Gitter[m has quit [Ping timeout: 245 seconds]
18:29
AnjishnuGitter[m has quit [Ping timeout: 245 seconds]
18:29
aadarsh-asthanaG has quit [Ping timeout: 245 seconds]
18:29
saksham189Gitter has quit [Ping timeout: 245 seconds]
18:29
MatheusAlcntaraS has quit [Ping timeout: 245 seconds]
18:29
PulkitGitter[m] has quit [Ping timeout: 245 seconds]
18:29
HimanshuPathakGi has quit [Ping timeout: 245 seconds]
18:29
AmanKashyap[m] has quit [Ping timeout: 245 seconds]
18:29
PratikPriyadarsa has quit [Ping timeout: 245 seconds]
18:29
iamarchit123Gitt has quit [Ping timeout: 245 seconds]
18:29
ka_shGitter[m] has quit [Ping timeout: 245 seconds]
18:29
GauravKumarGitte has quit [Ping timeout: 245 seconds]
18:29
MohomedShalik[m] has quit [Ping timeout: 245 seconds]
18:29
_slack_mlpack_43 has quit [Ping timeout: 245 seconds]
18:29
MrityunjayTripat has quit [Ping timeout: 245 seconds]
18:29
rishishounakGitt has quit [Ping timeout: 245 seconds]
18:29
kunal12298Gitter has quit [Ping timeout: 245 seconds]
18:29
AlexNguyenGitter has quit [Ping timeout: 245 seconds]
18:29
RohitKartikGitte has quit [Ping timeout: 245 seconds]
18:29
JoelJosephGitter has quit [Ping timeout: 245 seconds]
18:29
ManishKausikH[m] has quit [Ping timeout: 245 seconds]
18:29
alan__[m] has quit [Ping timeout: 245 seconds]
18:29
jeffinsamGitter[ has quit [Ping timeout: 245 seconds]
18:29
AmeetKumarRanaGi has quit [Ping timeout: 245 seconds]
18:29
AbhishekNimje[m] has quit [Ping timeout: 245 seconds]
18:29
shrit[m] has quit [Ping timeout: 245 seconds]
18:29
ShahAnwaarKhalid has quit [Ping timeout: 245 seconds]
18:29
ArunavShandeelya has quit [Ping timeout: 245 seconds]
18:29
say4n has quit [Ping timeout: 245 seconds]
18:29
_slack_mlpack_13 has quit [Ping timeout: 245 seconds]
18:29
birm[m] has quit [Ping timeout: 245 seconds]
18:29
AbhinavvermaGitt has quit [Ping timeout: 245 seconds]
18:29
SiddhantJain[m] has quit [Ping timeout: 245 seconds]
18:29
DirkEddelbuettel has quit [Ping timeout: 245 seconds]
18:29
jjb[m] has quit [Ping timeout: 245 seconds]
18:29
ABoodhayanaSVish has quit [Ping timeout: 245 seconds]
18:30
techsunny[m] has quit [Ping timeout: 252 seconds]
18:30
AvikantSrivasta4 has quit [Ping timeout: 252 seconds]
18:30
VivekTalwarGitte has quit [Ping timeout: 252 seconds]
18:30
_slack_mlpack_49 has quit [Ping timeout: 252 seconds]
18:30
SaiVamsi[m] has quit [Ping timeout: 252 seconds]
18:30
AyushSingh[m] has quit [Ping timeout: 252 seconds]
18:30
AtreyaMajumdarGi has quit [Ping timeout: 252 seconds]
18:30
khimrajGitter[m] has quit [Ping timeout: 252 seconds]
18:30
RishabhGoel[m] has quit [Ping timeout: 252 seconds]
18:30
pranav-mscGitter has quit [Ping timeout: 252 seconds]
18:30
UmarGitter[m] has quit [Ping timeout: 252 seconds]
18:30
_slack_mlpack_22 has quit [Ping timeout: 252 seconds]
18:30
LokeshJawale[m] has quit [Ping timeout: 252 seconds]
18:30
Eddie-XiaoGitter has quit [Ping timeout: 252 seconds]
18:30
HrithikNambiar[m has quit [Ping timeout: 252 seconds]
18:30
NitikJain[m] has quit [Ping timeout: 252 seconds]
18:30
ShivamShaurya[m] has quit [Ping timeout: 252 seconds]
18:30
Ashishkumarpanda has quit [Ping timeout: 252 seconds]
18:30
thecodeeagleGitt has quit [Ping timeout: 252 seconds]
18:30
HavshxjdnaggzGit has quit [Ping timeout: 252 seconds]
18:30
ABHINAVANAND[m] has quit [Ping timeout: 252 seconds]
18:30
AlanSanchezGitte has quit [Ping timeout: 252 seconds]
18:30
MayankRaj[m] has quit [Ping timeout: 252 seconds]
18:30
GauravGhati[m] has quit [Ping timeout: 252 seconds]
18:30
DillonKipke[m] has quit [Ping timeout: 252 seconds]
18:30
sailor[m] has quit [Ping timeout: 252 seconds]
18:30
_slack_mlpack_U7 has quit [Ping timeout: 252 seconds]
18:30
robotcatorGitter has quit [Ping timeout: 252 seconds]
18:30
tobelegitGitter[ has quit [Ping timeout: 252 seconds]
18:30
OleksandrNikolsk has quit [Ping timeout: 252 seconds]
18:30
YashMishraGitter has quit [Ping timeout: 252 seconds]
18:30
AryamanBhagatGit has quit [Ping timeout: 252 seconds]
18:30
SriramSKGitter[m has quit [Ping timeout: 248 seconds]
18:30
ShikharJaiswalGi has quit [Ping timeout: 248 seconds]
18:30
AbdullahKhilji[m has quit [Ping timeout: 248 seconds]
18:30
pruthvirajjadhav has quit [Ping timeout: 248 seconds]
18:30
_slack_mlpack_40 has quit [Ping timeout: 248 seconds]
18:30
_slack_mlpack_37 has quit [Ping timeout: 248 seconds]
18:30
siddhant2001Gitt has quit [Ping timeout: 248 seconds]
18:30
PulkitgeraGitter has quit [Ping timeout: 248 seconds]
18:30
PrinceGuptaGitte has quit [Ping timeout: 248 seconds]
18:30
kshitijandmojoGi has quit [Ping timeout: 248 seconds]
18:30
TathagataRaha[m] has quit [Ping timeout: 248 seconds]
18:30
kaushal[m] has quit [Ping timeout: 248 seconds]
18:30
GopiManoharTatir has quit [Ping timeout: 248 seconds]
18:30
RudraPatil[m] has quit [Ping timeout: 248 seconds]
18:30
OmarWagih1Gitter has quit [Ping timeout: 248 seconds]
18:30
FrancoisBerrierG has quit [Ping timeout: 248 seconds]
18:30
tarunjarvis5Gitt has quit [Ping timeout: 248 seconds]
18:30
anjishnu[m] has quit [Ping timeout: 248 seconds]
18:30
ArijitRoyGitter[ has quit [Ping timeout: 248 seconds]
18:30
Saksham[m] has quit [Ping timeout: 248 seconds]
18:30
DirkEddelbuette4 has quit [Ping timeout: 248 seconds]
18:30
oksky[m] has quit [Ping timeout: 248 seconds]
18:30
LolitaNazarov[m] has quit [Ping timeout: 248 seconds]
18:30
DavidFaragoGitte has quit [Ping timeout: 248 seconds]
18:30
ManiTyagiGitter[ has quit [Ping timeout: 248 seconds]
18:30
AdityaKandekarGi has quit [Ping timeout: 248 seconds]
18:30
_slack_mlpack_U0 has quit [Ping timeout: 248 seconds]
18:30
sdev_7211[m] has quit [Ping timeout: 248 seconds]
18:30
CharanpreetSingh has quit [Ping timeout: 258 seconds]
18:30
KritikaGuptaGitt has quit [Ping timeout: 258 seconds]
18:30
AniketKhandagale has quit [Ping timeout: 258 seconds]
18:30
VanshBansalGitte has quit [Ping timeout: 258 seconds]
18:30
RakeshBhugraGitt has quit [Ping timeout: 258 seconds]
18:30
_slack_mlpack_34 has quit [Ping timeout: 258 seconds]
18:30
AbhinavTalariGit has quit [Ping timeout: 258 seconds]
18:30
EmmanuelLykosGit has quit [Ping timeout: 258 seconds]
18:30
SergioMoralesE[m has quit [Ping timeout: 258 seconds]
18:30
Gulshan[m] has quit [Ping timeout: 258 seconds]
18:30
MostafaNabiehGit has quit [Ping timeout: 258 seconds]
18:30
jeffin143[m] has quit [Ping timeout: 258 seconds]
18:30
GauravTirodkar[m has quit [Ping timeout: 258 seconds]
18:30
geek-2002Gitter[ has quit [Ping timeout: 258 seconds]
18:30
HARSHCHAUHAN[m] has quit [Ping timeout: 258 seconds]
18:30
Kaushalc64[m] has quit [Ping timeout: 258 seconds]
18:30
SaraanshTandonGi has quit [Ping timeout: 258 seconds]
18:30
zoq[m] has quit [Ping timeout: 258 seconds]
18:30
KrishnaSashank[m has quit [Ping timeout: 258 seconds]
18:30
RV784Gitter[m] has quit [Ping timeout: 258 seconds]
18:30
PranavReddyP16Gi has quit [Ping timeout: 258 seconds]
18:30
SirishGitter[m] has quit [Ping timeout: 258 seconds]
18:30
AakashkaushikGit has quit [Ping timeout: 258 seconds]
18:30
YASH01009Gitter[ has quit [Ping timeout: 258 seconds]
18:30
yfgeng6Gitter[m] has quit [Ping timeout: 258 seconds]
18:30
bash[m] has quit [Ping timeout: 258 seconds]
18:30
muis[m] has quit [Ping timeout: 258 seconds]
18:30
EshitaBhargavaGi has quit [Ping timeout: 276 seconds]
18:30
sakshamb189[m] has quit [Ping timeout: 276 seconds]
18:30
yashwants19[m] has quit [Ping timeout: 276 seconds]
18:30
ryan[m]1 has quit [Ping timeout: 276 seconds]
18:30
jacob-earleGitte has quit [Ping timeout: 276 seconds]
18:30
AbhishekMishra[m has quit [Ping timeout: 276 seconds]
18:30
turska79Gitter[m has quit [Ping timeout: 276 seconds]
18:30
KumarArnav[m] has quit [Ping timeout: 276 seconds]
18:30
AbishaiEbenezerG has quit [Ping timeout: 276 seconds]
18:30
AnirudhSinghChau has quit [Ping timeout: 276 seconds]
18:30
AlexNguyen[m] has quit [Ping timeout: 276 seconds]
18:30
mlpack-inviter[m has quit [Ping timeout: 276 seconds]
18:30
GauravSinghGitte has quit [Ping timeout: 276 seconds]
18:30
ChaithanyaNaik[m has quit [Ping timeout: 276 seconds]
18:30
AndrewSpottGitte has quit [Ping timeout: 276 seconds]
18:30
AbhinavGudipati[ has quit [Ping timeout: 276 seconds]
18:30
rcurtin[m] has quit [Ping timeout: 276 seconds]
18:30
JatoJoseph[m] has quit [Ping timeout: 276 seconds]
18:30
RoHitRushilGitte has quit [Ping timeout: 276 seconds]
18:30
SuryamArnavKalra has quit [Ping timeout: 276 seconds]
18:30
AnushKiniGitter[ has quit [Ping timeout: 276 seconds]
18:30
abernauer[m] has quit [Ping timeout: 276 seconds]
18:30
_slack_mlpack_10 has quit [Ping timeout: 276 seconds]
18:30
AniThoGitter[m] has quit [Ping timeout: 276 seconds]
18:30
KshitijAggarwal[ has quit [Ping timeout: 276 seconds]
18:30
ronakypatel[m] has quit [Ping timeout: 276 seconds]
18:30
RiturajDuttaGitt has quit [Ping timeout: 276 seconds]
18:30
FranchisNSaikia[ has quit [Ping timeout: 276 seconds]
18:30
TanayMehtaGitter has quit [Ping timeout: 276 seconds]
18:44
_slack_mlpack_31 has joined #mlpack
18:44
_slack_mlpack_U4 has joined #mlpack
18:44
_slack_mlpack_U0 has joined #mlpack
18:44
_slack_mlpack_U7 has joined #mlpack
18:44
32NAAAEJA has joined #mlpack
18:44
14WAAADY6 has joined #mlpack
18:44
21WAAADLX has joined #mlpack
18:44
07EAAACRT has joined #mlpack
18:44
7F1AAAGOZ has joined #mlpack
18:45
7F1AAAGO2 has joined #mlpack
18:45
_slack_mlpack_16 has joined #mlpack
18:45
32NAAAEJA has quit [Client Quit]
18:45
14WAAADY7 has joined #mlpack
18:45
14WAAADY8 has joined #mlpack
18:45
32NAAAEJB has joined #mlpack
18:45
07EAAACRT has quit [Client Quit]
18:45
7F1AAAGO2 has quit [Client Quit]
18:45
21WAAADLY has joined #mlpack
18:45
21WAAADL2 has joined #mlpack
18:45
14WAAADY7 has quit [Client Quit]
18:45
32NAAAEJB has quit [Client Quit]
18:45
_slack_mlpack_10 has joined #mlpack
18:45
_slack_mlpack_13 has joined #mlpack
18:45
14WAAADY8 has quit [Client Quit]
18:45
M7IZAAAABA has joined #mlpack
18:45
_slack_mlpack_19 has joined #mlpack
18:47
32NAAAEJT has joined #mlpack
18:47
32NAAAEJT has quit [Client Quit]
18:47
94KAAAFHT has joined #mlpack
18:47
94KAAAFHT has quit [Client Quit]
18:47
_slack_mlpack_22 has joined #mlpack
18:47
_slack_mlpack_25 has joined #mlpack
18:47
_slack_mlpack_28 has joined #mlpack
18:47
_slack_mlpack_34 has joined #mlpack
18:47
_slack_mlpack_37 has joined #mlpack
18:47
_slack_mlpack_40 has joined #mlpack
18:47
_slack_mlpack_43 has joined #mlpack
18:47
_slack_mlpack_46 has joined #mlpack
18:47
GitterIntegratio has joined #mlpack
18:47
_slack_mlpack_49 has joined #mlpack
18:50
bash[m] has joined #mlpack
18:51
sdev_7211[m] has joined #mlpack
18:51
gitter-badgerThe has joined #mlpack
18:52
techsunny[m] has joined #mlpack
18:52
mrshu has joined #mlpack
18:56
Gauravkumar[m] has joined #mlpack
18:56
CssTejaGitter[m] has joined #mlpack
18:56
_slack_mlpack_24 has joined #mlpack
18:57
VSaicharanGitter has joined #mlpack
18:57
PrateekGuptaGitt has joined #mlpack
18:57
datarobot[m] has joined #mlpack
18:58
DivyanshKumar[m] has joined #mlpack
18:58
AvikantSrivasta7 has joined #mlpack
18:58
kaushal07wickGit has joined #mlpack
19:00
Cadair has joined #mlpack
19:00
NishantNandanGit has joined #mlpack
19:03
siddhant_jain[m] has joined #mlpack
19:06
yashwants19[m] has joined #mlpack
19:06
jacob-earleGitte has joined #mlpack
19:06
ryan[m]1 has joined #mlpack
19:06
EshitaBhargavaGi has joined #mlpack
19:06
AbhishekMishra[m has joined #mlpack
19:06
KumarArnav[m] has joined #mlpack
19:06
sakshamb189[m] has joined #mlpack
19:06
mlpack-inviter[m has joined #mlpack
19:06
AnirudhSinghChau has joined #mlpack
19:06
AbishaiEbenezerG has joined #mlpack
19:07
turska79Gitter[m has joined #mlpack
19:07
AnmolpreetSinghG has joined #mlpack
19:07
Valliappan_CAGit has joined #mlpack
19:07
_slack_mlpack_27 has joined #mlpack
19:07
Manav-KumarGitte has joined #mlpack
19:07
TrinhNgo[m] has joined #mlpack
19:07
TejasviGuptaGitt has joined #mlpack
19:07
kartikdutt18Gitt has joined #mlpack
19:07
Prometheus[m] has joined #mlpack
19:07
RyanBirminghamGi has joined #mlpack
19:07
AnjishnuGitter[m has joined #mlpack
19:07
TaapasAgrawalGit has joined #mlpack
19:07
rcurtin[m]1 has joined #mlpack
19:07
saksham189Gitter has joined #mlpack
19:07
EL-SHREIFGitter[ has joined #mlpack
19:07
AtharvaKhandaitG has joined #mlpack
19:07
SeverinoTessarin has joined #mlpack
19:07
prateek93a[m] has joined #mlpack
19:07
ShubhamAbhangGit has joined #mlpack
19:07
dkipke[m] has joined #mlpack
19:07
NippunSharmaGitt has joined #mlpack
19:07
HemalMamtora[m] has joined #mlpack
19:07
ZanHuang[m] has joined #mlpack
19:07
jonpsy[m] has joined #mlpack
19:07
AyushKumarLavani has joined #mlpack
19:07
zoq[m]1 has joined #mlpack
19:07
_slack_mlpack_14 has joined #mlpack
19:07
VedantaJha[m] has joined #mlpack
19:07
Amankumar[m] has joined #mlpack
19:07
MatheusAlcntaraS has joined #mlpack
19:07
AlexNguyen[m] has joined #mlpack
19:07
Param-29Gitter[m has joined #mlpack
19:07
PulkitGitter[m] has joined #mlpack
19:07
aadarsh-asthanaG has joined #mlpack
19:07
brongulusGitter[ has joined #mlpack
19:07
RishabhGargGitte has joined #mlpack
19:07
_slack_mlpack_44 has joined #mlpack
19:07
_slack_mlpack_17 has joined #mlpack
19:07
hemal[m] has joined #mlpack
19:08
SoumyadipSarkar[ has joined #mlpack
19:08
kunalsingh2002Gi has joined #mlpack
19:08
bisakh[m] has joined #mlpack
19:08
PratikPriyadarsa has joined #mlpack
19:08
ka_shGitter[m] has joined #mlpack
19:08
AmanKashyap[m] has joined #mlpack
19:08
iamarchit123Gitt has joined #mlpack
19:08
RohitKartikGitte has joined #mlpack
19:08
ArunavShandeelya has joined #mlpack
19:08
HimanshuPathakGi has joined #mlpack
19:08
MohomedShalik[m] has joined #mlpack
19:08
AlexNguyenGitter has joined #mlpack
19:08
GauravKumarGitte has joined #mlpack
19:08
alan__[m] has joined #mlpack
19:08
say4n has joined #mlpack
19:08
MrityunjayTripat has joined #mlpack
19:08
_slack_mlpack_47 has joined #mlpack
19:08
shrit[m] has joined #mlpack
19:08
birm[m] has joined #mlpack
19:08
ShahAnwaarKhalid has joined #mlpack
19:08
AmeetKumarRanaGi has joined #mlpack
19:08
rishishounakGitt has joined #mlpack
19:08
kunal12298Gitter has joined #mlpack
19:09
jeffinsamGitter[ has joined #mlpack
19:09
AbhishekNimje[m] has joined #mlpack
19:10
ABoodhayanaSVish has joined #mlpack
19:10
jjb[m] has joined #mlpack
19:10
AvikantSrivasta4 has joined #mlpack
19:10
VivekTalwarGitte has joined #mlpack
19:10
pranav-mscGitter has joined #mlpack
19:10
khimrajGitter[m] has joined #mlpack
19:10
AyushSingh[m] has joined #mlpack
19:10
UmarGitter[m] has joined #mlpack
19:10
AtreyaMajumdarGi has joined #mlpack
19:10
RishabhGoel[m] has joined #mlpack
19:10
SaiVamsi[m] has joined #mlpack
19:11
AniketKhandagale has joined #mlpack
19:11
KritikaGuptaGitt has joined #mlpack
19:11
VanshBansalGitte has joined #mlpack
19:11
CharanpreetSing4 has joined #mlpack
19:11
MostafaNabiehGit has joined #mlpack
19:11
SergioMoralesE[m has joined #mlpack
19:11
SaraanshTandonGi has joined #mlpack
19:11
AbhinavTalariGit has joined #mlpack
19:11
Gulshan[m] has joined #mlpack
19:11
jeffin143[m] has joined #mlpack
19:11
HARSHCHAUHAN[m] has joined #mlpack
19:11
EmmanuelLykosGit has joined #mlpack
19:11
RV784Gitter[m] has joined #mlpack
19:11
Kaushalc64[m] has joined #mlpack
19:11
KrishnaSashank[m has joined #mlpack
19:11
GauravTirodkar[m has joined #mlpack
19:11
zoq[m] has joined #mlpack
19:11
geek-2002Gitter[ has joined #mlpack
19:12
RakeshBhugraGitt has joined #mlpack
19:12
AbdullahKhilji[m has joined #mlpack
19:12
SriramSKGitter[m has joined #mlpack
19:12
ShikharJaiswalGi has joined #mlpack
19:12
pruthvirajjadhav has joined #mlpack
19:12
siddhant2001Gitt has joined #mlpack
19:12
kshitijandmojoGi has joined #mlpack
19:13
TathagataRaha[m] has joined #mlpack
19:13
PrinceGuptaGitte has joined #mlpack
19:13
PulkitgeraGitter has joined #mlpack
19:15
SiddhantJain[m] has joined #mlpack
19:15
AbhinavvermaGitt has joined #mlpack
19:16
OleksandrNikolsk has joined #mlpack
19:16
RiturajDuttaGitt has joined #mlpack
19:16
robotcatorGitter has joined #mlpack
19:16
ronakypatel[m] has joined #mlpack
19:16
DillonKipke[m] has joined #mlpack
19:16
GauravGhati[m] has joined #mlpack
19:16
KshitijAggarwal[ has joined #mlpack
19:16
sailor[m] has joined #mlpack
19:16
yfgeng6Gitter[m] has joined #mlpack
19:16
ManiTyagiGitter[ has joined #mlpack
19:16
YASH01009Gitter[ has joined #mlpack
19:16
AniThoGitter[m] has joined #mlpack
19:16
AdityaKandekarGi has joined #mlpack
19:16
DavidFaragoGitte has joined #mlpack
19:16
MayankRaj[m] has joined #mlpack
19:16
LolitaNazarov[m] has joined #mlpack
19:16
abernauer[m] has joined #mlpack
19:16
ABHINAVANAND[m] has joined #mlpack
19:16
PranavReddyP16Gi has joined #mlpack
19:16
AlanSanchezGitte has joined #mlpack
19:16
DirkEddelbuettel has joined #mlpack
19:16
RoHitRushilGitte has joined #mlpack
19:16
SirishGitter[m] has joined #mlpack
19:16
AnushKiniGitter[ has joined #mlpack
19:16
HavshxjdnaggzGit has joined #mlpack
19:16
JatoJoseph[m] has joined #mlpack
19:16
ShivamShaurya[m] has joined #mlpack
19:16
thecodeeagleGitt has joined #mlpack
19:16
DirkEddelbuette4 has joined #mlpack
19:16
rcurtin[m] has joined #mlpack
19:16
AbhinavGudipati[ has joined #mlpack
19:16
AndrewSpottGitte has joined #mlpack
19:16
ChaithanyaNaik[m has joined #mlpack
19:16
Ashishkumarpanda has joined #mlpack
19:16
muis[m] has joined #mlpack
19:16
NitikJain[m] has joined #mlpack
19:16
Saksham[m] has joined #mlpack
19:16
tarunjarvis5Gitt has joined #mlpack
19:16
ArijitRoyGitter[ has joined #mlpack
19:16
Eddie-XiaoGitter has joined #mlpack
19:16
HrithikNambiar[m has joined #mlpack
19:16
tobelegitGitter[ has joined #mlpack
19:16
FranchisNSaikia[ has joined #mlpack
19:16
anjishnu[m] has joined #mlpack
19:16
YashMishraGitter has joined #mlpack
19:16
OmarWagih1Gitter has joined #mlpack
19:16
FrancoisBerrierG has joined #mlpack
19:16
LokeshJawale[m] has joined #mlpack
19:16
kaushal[m] has joined #mlpack
19:16
GopiManoharTatir has joined #mlpack
19:16
ManishKausikH[m] has joined #mlpack
19:16
RudraPatil[m] has joined #mlpack
19:16
AryamanBhagatGit has joined #mlpack
19:16
AakashkaushikGit has joined #mlpack
19:16
JoelJosephGitter has joined #mlpack
19:16
TanayMehtaGitter has joined #mlpack
19:17
oksky[m] has joined #mlpack
19:17
GauravSinghGitte has joined #mlpack
19:17
SuryamArnavKalra has joined #mlpack
19:17
M32NAAAEJA has joined #mlpack
19:17
M07EAAACRT has joined #mlpack
19:17
M14WAAADY8 has joined #mlpack
19:17
M14WAAADY7 has joined #mlpack
19:17
M32NAAAEJT has joined #mlpack
19:17
M94KAAAFHT has joined #mlpack
19:17
M32NAAAEJB has joined #mlpack
19:17
M7F1AAAGO2 has joined #mlpack
19:18
SlackIntegration has joined #mlpack
20:51
ImQ009 has quit [Quit: Leaving]
22:59
<
zoq >
line 61 as well
22:59
<
zoq >
Or remove the third parameter
23:00
<
zoq >
Or use the python server, that works as well