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/
ImQ009 has joined #mlpack
< zoq> rcurtin: Not sure if you have seen this, but when I use test, test_labels, train, train_labels = mlpack.preprocess_split(input=dataset, input_labels=labels, test_ratio=0.3) in Julia, I get the following error -> https://gist.github.com/zoq/4f5a3feb43866c6d690a407717a19069
< zoq> rcurtin: Everything seems fine if I use: test, test_labels, train, train_labels = mlpack.preprocess_split(dataset, input_labels=labels, test_ratio=0.3) so just dataset and not input=dataset
< zoq> rcurtin: Ahh, the example is already fixed, still wonder why that is.
< rcurtin> zoq: right, `input` is a required option, not a keyword option, so it has to come first
< rcurtin> I'm trying to check the documentation but my Julia session is frozen...
< rcurtin> the website documentation looks correct though: https://www.mlpack.org/doc/stable/julia_documentation.html#preprocess_split
< zoq> rcurtin: I looked at the 3.3.1 doc
< zoq> yeah, it's fixed in 3.3.2
< rcurtin> hmm, the 3.3.1 doc looks the same (except for the `no_shuffle` option which was new in 3.3.2)
< rcurtin> anyway, if it's fixed now I guess there is no issue :)
< rcurtin> if you have suggestions for how it can be improved though, definitely, I can try to make some changes
< zoq> Is there any workaround for that, to me it seems strange that I can't use input=..
< zoq> But maybe this is a common thing in the Julia world.
< rcurtin> I guess, it's not a keyword option; but maybe there are required keyword arguments? I'm taking a look now
< zoq> ohh wait it's fixed in the git doc
< zoq> looking at this, it's still input=dataset,
< rcurtin> I see
< rcurtin> yeah, so at least for making `input=dataset` work (e.g. required keyword arguments), those don't appear well-supported in Julia unfortunately
< zoq> which also has the Pkg.add("Zlib") issue :)
< rcurtin> I guess I just need to make another release soon so that the stable documentation is updated :)
Aleksandr has joined #mlpack
< rcurtin> in Python, required keyword arguments are available so `input=dataset` works there
< rcurtin> but it looks like in Julia, the only way I can do it is as a hack... where I basically say that the required keyword takes a default value which is throwing an exception
< rcurtin> e.g. I'd define it as `function f(; input=error("must specify 'keyword' argument"))` or similar
< Aleksandr> Why in theory argument of derivative is sum(w*x) to the activation function and in all code realisations argument of derivative is output of activation function?
< zoq> I see, I guess if that is nothing new to the Julia community it's fine.
< rcurtin> yeah, I talked through the Julia bindings with a couple people from the Julia community and they didn't see any issue with it
< rcurtin> but I agree it is a little imperfect
< rcurtin> throwing an exception as a default value is really weird though, so I don't think it's a great idea
< zoq> Yes, wasn't really helpful for me :)
< rcurtin> Julia is weird---it's *kind of* like Python but there are all kinds of little differences
< rcurtin> I work in it every day at my company, and there are some good things about it, but overall, personally, it is not a language I would choose to use for solving my machine learning problems
< zoq> You can find strange constructs in every language.
< rcurtin> wait, hang on
< rcurtin> this is my other problem with Julia---everything is changing so fast
< rcurtin> now I've found what appears to be a merged implementation of required keyword arguments: https://github.com/JuliaLang/julia/pull/25830
< zoq> nice
< zoq> Also, in the README.md file we say "Julia >= 3.2.2" but I think the latest is 1.5? So I guess this is some issue introduced by the release script, looking at the version.
govg has joined #mlpack
govg has quit [Quit: leaving]
govg has joined #mlpack
govg has quit [Client Quit]
govg has joined #mlpack
< rcurtin> zoq: you're right, something must be wrong there, let me open a PR
< zoq> Someone responded to the mlpack video-meet mail, that Zoom is banned in India?
< rcurtin> it looks zoom is not currently banned, but if that does change we can probably find another service
< zoq> Yeah, I think this will effect some of us.
< kartikdutt18[m]> Hey @KimSangYeon-DGU, @sakshamb189, I think we have a meet today.
< sakshamb189[m]> hey kartikdutt18 I am here
< kartikdutt18[m]> Great, I think for batchnorm PR we would only have to fix the input stream error. (I installed Ubuntu today so I could take a look too). Other than that, I opened a PR for YOLO model (Architecture only) [here](https://github.com/mlpack/models/pull/24). I'll open one for preprocessor tomorrow.
< sakshamb189[m]> sounds good
< sakshamb189[m]> so did you figure the bug with batchnorm yet?
< kartikdutt18[m]> No I didn't yet, All parameters that are needed to be serialized are serialized and I added accessor methods for all parameters required during training. The only thing that I know for sure right now is that if I replace the code [here](https://github.com/mlpack/mlpack/pull/2474#discussion_r451428126) with welford method it will pass the build.
< sakshamb189[m]> yeah the welford method was already previously passing.
< kartikdutt18[m]> But I don't think we can use that since its value don't match. Ohh and also to see if everything was working correctly I trained mnist_cnn example and saved it and ran inference and it worked fine. Also, Training a single epoch of DarkNet on Cifar10 takes around 6-7 hrs whereas earlier it was more than 12.
< kartikdutt18[m]> * But I don't think we can use that since its value don't match with PyTorch. Ohh and also to see if everything was working correctly I trained mnist_cnn example and saved it and ran inference and it worked fine. Also, Training a single epoch of DarkNet on Cifar10 takes around 6-7 hrs whereas earlier it was more than 12.
< sakshamb189[m]> yup alright then hopefully we should be able to get this resolved.
< sakshamb189[m]> do we need to discuss anything else?
< kartikdutt18[m]> I think that's it from my side.
< sakshamb189[m]> okay then we will meet next week! Have a nice weekend!
< kartikdutt18[m]> Great, Have a great weeked!
< KimSangYeon-DGU[> kartikdutt18: sakshamb189 Sorry for being away... let me follow up your discussion now
< kartikdutt18[m]> No worries, I'm here.
< KimSangYeon-DGU[> kartikdutt18: Can you explain the reason you introduce the Welford method?
< kartikdutt18[m]> I removed the welford method since it was giving same value as PyTorch.
< KimSangYeon-DGU[> Aha, Ok
< KimSangYeon-DGU[> kartikdutt18: The serialization issue isn't be reproduced on MacOS, right?
< kartikdutt18[m]> Right, it passes all test locally as well as on Azure on OSX.
< KimSangYeon-DGU[> Hmm..., Ok. Good starting point to figure it out
< jeffin143[m]> @zoq
< jeffin143[m]> Cron job ran again today ???
< jeffin143[m]> Do we have a meeting today ??
pickle-rick[m] has quit [Remote host closed the connection]
srinivasyadav227 has quit [Remote host closed the connection]
eddelbuettel[m] has quit [Remote host closed the connection]
khimrajGitter[m] has quit [Remote host closed the connection]
anjishnu[m] has quit [Remote host closed the connection]
PrinceGuptaGitte has quit [Read error: Connection reset by peer]
EL-SHREIFGitter[ has quit [Read error: Connection reset by peer]
KumarArnav[m] has quit [Read error: Connection reset by peer]
walragatver[m] has quit [Read error: Connection reset by peer]
ShikharJaiswalGi has quit [Read error: Connection reset by peer]
vigsterkr[m] has quit [Read error: Connection reset by peer]
yashwants19[m] has quit [Read error: Connection reset by peer]
saksham189Gitter has quit [Read error: Connection reset by peer]
SakshamRastogiGi has quit [Read error: Connection reset by peer]
ShivamShaurya[m] has quit [Read error: Connection reset by peer]
asadoll[m] has quit [Read error: Connection reset by peer]
sreenik[m] has quit [Read error: Connection reset by peer]
mlozhnikov[m] has quit [Read error: Connection reset by peer]
sailor[m] has quit [Remote host closed the connection]
MrityunjayTripat has quit [Read error: Connection reset by peer]
KimSangYeon-DGU[ has quit [Read error: Connection reset by peer]
sakshamb189[m] has quit [Read error: Connection reset by peer]
RohitKartikGitte has quit [Read error: Connection reset by peer]
aadarsh-asthanaG has quit [Read error: Connection reset by peer]
GauravSinghGitte has quit [Read error: Connection reset by peer]
siddhant2001Gitt has quit [Read error: Connection reset by peer]
TaapasAgrawalGit has quit [Read error: Connection reset by peer]
YashwantSinghPar has quit [Remote host closed the connection]
nishantkr18[m] has quit [Remote host closed the connection]
kunal12298Gitter has quit [Read error: Connection reset by peer]
jeffin143[m] has quit [Read error: Connection reset by peer]
AbhinavvermaGitt has quit [Read error: Connection reset by peer]
Cadair has quit [Write error: Connection reset by peer]
robertohueso has quit [Remote host closed the connection]
mrmajor[m] has quit [Remote host closed the connection]
OmarWagih1Gitter has quit [Read error: Connection reset by peer]
birm[m] has quit [Read error: Connection reset by peer]
himanshu_pathak[ has quit [Read error: Connection reset by peer]
DivyanshKumar[m] has quit [Read error: Connection reset by peer]
AbhishekNimje[m] has quit [Read error: Connection reset by peer]
Manav-KumarGitte has quit [Read error: Connection reset by peer]
DirkEddelbuettel has quit [Read error: Connection reset by peer]
RishabhGoel[m] has quit [Read error: Connection reset by peer]
bisakh[m] has quit [Read error: Connection reset by peer]
AbdullahKhilji[m has quit [Remote host closed the connection]
PulkitgeraGitter has quit [Read error: Connection reset by peer]
AnjishnuGitter[m has quit [Read error: Connection reset by peer]
SlackIntegration has quit [Write error: Connection reset by peer]
kartikdutt18Gitt has quit [Remote host closed the connection]
SaraanshTandonGi has quit [Read error: Connection reset by peer]
shrit[m] has quit [Read error: Connection reset by peer]
ChaithanyaNaik[m has quit [Remote host closed the connection]
JatoJoseph[m] has quit [Read error: Connection reset by peer]
AtharvaKhandaitG has quit [Read error: Connection reset by peer]
RyanBirminghamGi has quit [Read error: Connection reset by peer]
geek-2002Gitter[ has quit [Read error: Connection reset by peer]
maddogx[m] has quit [Read error: Connection reset by peer]
abhinavgudipatiG has quit [Read error: Connection reset by peer]
AbhinavGudipati[ has quit [Read error: Connection reset by peer]
benpa[m] has quit [Write error: Connection reset by peer]
kartikdutt18[m] has quit [Remote host closed the connection]
ZanHuang[m] has quit [Remote host closed the connection]
VSaicharanGitter has quit [Remote host closed the connection]
jacob-earleGitte has quit [Write error: Connection reset by peer]
robotcatorGitter has quit [Read error: Connection reset by peer]
M_slack_mlpack_U has quit [Read error: Connection reset by peer]
ggalan87[m] has quit [Read error: Connection reset by peer]
PranavReddyP16Gi has quit [Read error: Connection reset by peer]
outmanipulateGit has quit [Remote host closed the connection]
NishantKumarGitt has quit [Read error: Connection reset by peer]
RudraPatil[m] has quit [Remote host closed the connection]
AniThoGitter[m] has quit [Read error: Connection reset by peer]
GitterIntegratio has quit [Write error: Connection reset by peer]
Param-29Gitter[m has quit [Write error: Broken pipe]
MostafaNabiehGit has quit [Write error: Connection reset by peer]
JoelJosephGitter has quit [Write error: Connection reset by peer]
rcurtin[m] has quit [Write error: Connection reset by peer]
HimanshuPathakGi has quit [Write error: Connection reset by peer]
jjb[m] has quit [Write error: Connection reset by peer]
Saksham[m] has quit [Write error: Broken pipe]
aoeuiiueoa[m] has quit [Write error: Connection reset by peer]
KhizirSiddiquiGi has quit [Write error: Connection reset by peer]
TanayMehtaGitter has quit [Remote host closed the connection]
AryamanBhagatGit has quit [Read error: Connection reset by peer]
himanshu_pathak[ has joined #mlpack
jeffin143[m] has joined #mlpack
< jeffin143[m]> Suddenly
< jeffin143[m]> Why did your name changed sudddnlu
sreenik[m] has joined #mlpack
GitterIntegratio has joined #mlpack
benpa[m] has joined #mlpack
aoeuiiueoa[m] has joined #mlpack
SlackIntegration has joined #mlpack
Cadair has joined #mlpack
kartikdutt18[m] has joined #mlpack
yashwants19[m] has joined #mlpack
sakshamb189[m] has joined #mlpack
JatoJoseph[m] has joined #mlpack
RoHitRushilGitte has joined #mlpack
TaapasAgrawalGit has joined #mlpack
ShikharJaiswalGi has joined #mlpack
anjishnu[m] has joined #mlpack
AbdullahKhilji[m has joined #mlpack
mrmajor[m] has joined #mlpack
SaraanshTandonGi has joined #mlpack
RyanBirminghamGi has joined #mlpack
nishantkr18[m] has joined #mlpack
abhinavgudipatiG has joined #mlpack
AnjishnuGitter[m has joined #mlpack
kartikdutt18Gitt has joined #mlpack
VSaicharanGitter has joined #mlpack
OmarWagih1Gitter has joined #mlpack
vigsterkr[m] has joined #mlpack
HimanshuPathakGi has joined #mlpack
ShivamShaurya[m] has joined #mlpack
rcurtin[m] has joined #mlpack
DivyanshKumar[m] has joined #mlpack
aadarsh-asthanaG has joined #mlpack
jeffinsamGitter[ has joined #mlpack
pickle-rick[m] has joined #mlpack
KritikaGuptaGitt has joined #mlpack
PranavReddyP16Gi has joined #mlpack
bisakh[m] has joined #mlpack
AbhinavvermaGitt has joined #mlpack
KumarArnav[m] has joined #mlpack
sailor[m] has joined #mlpack
SriramSKGitter[m has joined #mlpack
birm[m] has joined #mlpack
GauravSinghGitte has joined #mlpack
asadoll[m] has joined #mlpack
siddhant2001Gitt has joined #mlpack
AryamanBhagatGit has joined #mlpack
PulkitgeraGitter has joined #mlpack
chopper_inbound[ has joined #mlpack
jacob-earleGitte has joined #mlpack
JoelJosephGitter has joined #mlpack
Param-29Gitter[m has joined #mlpack
ArunavShandeelya has joined #mlpack
RudraPatil[m] has joined #mlpack
NishantKumarGitt has joined #mlpack
GauravTirodkar[m has joined #mlpack
AniThoGitter[m] has joined #mlpack
saksham189Gitter has joined #mlpack
KhizirSiddiquiGi has joined #mlpack
DirkEddelbuettel has joined #mlpack
kunal12298Gitter has joined #mlpack
RishabhGoel[m] has joined #mlpack
mlozhnikov[m] has joined #mlpack
walragatver[m] has joined #mlpack
srinivasyadav227 has joined #mlpack
maddogx[m] has joined #mlpack
PrinceGuptaGitte has joined #mlpack
ggalan87[m] has joined #mlpack
UmarGitter[m] has joined #mlpack
ChaithanyaNaik[m has joined #mlpack
Manav-KumarGitte has joined #mlpack
AbhinavGudipati[ has joined #mlpack
zoq[m] has joined #mlpack
AmeetKumarRanaGi has joined #mlpack
abernauer[m] has joined #mlpack
AbhishekNimje[m] has joined #mlpack
RohitKartikGitte has joined #mlpack
robotcatorGitter has joined #mlpack
AbishaiEbenezerG has joined #mlpack
jjb[m] has joined #mlpack
khimrajGitter[m] has joined #mlpack
AtharvaKhandaitG has joined #mlpack
MostafaNabiehGit has joined #mlpack
M_slack_mlpack_U has joined #mlpack
LolitaNazarov[m] has joined #mlpack
TrinhNgo[m] has joined #mlpack
geek-2002Gitter[ has joined #mlpack
KimSangYeon-DGU[ has joined #mlpack
TanayMehtaGitter has joined #mlpack
SakshamRastogiGi has joined #mlpack
ZanHuang[m] has joined #mlpack
EL-SHREIFGitter[ has joined #mlpack
YashwantSinghPar has joined #mlpack
MrityunjayTripat has joined #mlpack
Valliappan_CAGit has joined #mlpack
eddelbuettel[m] has joined #mlpack
outmanipulateGit has joined #mlpack
shrit[m] has joined #mlpack
Saksham[m] has joined #mlpack
< zoq> jeffin143[m]: mine? Probably because I used another client.
mlpack-meeting has joined #mlpack
< mlpack-meeting> Hello everyone, video meeting in about 30 minutes - https://zoom.us/j/3820896170
mlpack-meeting has quit [Remote host closed the connection]
< zoq> if anybody likes to have one today?
< rcurtin> I'd love to join, but the problem is I have meetings at 5pm on Thursdays (it's now 2pm) that I always end up working right up until the time of the meeting... so I can't devote the time today
< rcurtin> maybe next week will be easier for me?
robertohueso has joined #mlpack
Aleksandr has quit [Quit: Leaving]
ImQ009 has quit [Quit: Leaving]