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/
ashwinijja has joined #mlpack
ashwinijja has quit [Remote host closed the connection]
prometheus47 has joined #mlpack
< Saksham[m]> zoq In the proposal would you prefer a week by week timeline or we can do it by phases and later break it down during the bonding period ?
KimSangYeon-DGU has quit [Ping timeout: 240 seconds]
ImQ009 has joined #mlpack
< bisakh[m]1> Saksham: I am not sure, though the application guide says it better to have week by week plan. "*Describe a timeline of some sort for your project, broken down week by week (or thereabouts)."*
< bisakh[m]1> Hey zoq I had something in my mind, so asked you on DM. If time permits, please respond
ShikharJ has joined #mlpack
ShikharJ has quit [Remote host closed the connection]
mtnshhGitter[m] has joined #mlpack
< mtnshhGitter[m]> Hey Everyone, I am Miten Shah. I have submitted my draft in GSoC website. Any suggestions and reviews are most welcome.
< mtnshhGitter[m]> Thank you, in advance.
srinivasyadav227 has joined #mlpack
< PrinceGuptaGitte> Hello @zoq, when we want to train a convnet from a dataset it will be a good idea to have a `ImageDataGenerator` of MLPack like keras have so training a convnet will become less complicated for end MLPack users.
< PrinceGuptaGitte> My gsoc idea also requires training a convnet, so should I add this to my objectives in coding periodor should I start working on it pre gsoc(which I think will be better incase other projects also require training convnet)
< zoq> PrinceGuptaGitte: If you like you can add this one to your timeline, if I remember right kartikdutt18Gitt is working on something like this already.
< Saksham[m]> Hey zoq should the schedule be Broken down week by week ?
< zoq> Saksham[m]: Saksham[m]: Ideally, you can already break it down before the community bonding time, but we can certainly use the bonding time for refinement.
< Saksham[m]> zoq Okay thanks, I’ve done it in phases currently
< kartikdutt18Gitt> Hey zoq, prince776, I am working on a data loader for models repo. I think it's more suited there, I have already added support to load images / data from CSV files. It will be extended to support images as well. Prince if you feel there is something missing there after it's merged you can always open a PR for the same.
< kartikdutt18Gitt> Hey zoq, Could you help me out with a question, I am trying to run LSTM example on Jupyter notebook, However ensmallen stops after one epoch, any idea why that might happen?
< zoq> kartikdutt18Gitt: And I guess the plan is to have a method to load specific datasets as well, like mnist?
< kartikdutt18Gitt> Yes, I have already added support for mnist and next one on the list is PASCAL dataset.
< kartikdutt18Gitt> A user could just pass Dataloader("mnist", train_test_split = 0.9, other_params_if_any);
< zoq> kartikdutt18Gitt: Not sure yet, have to take a closer look, btw. I have a jupyterhub setup that makes the first part obsolete, and uses a more recent cling version; will open a PR with an example later as well.
< zoq> kartikdutt18Gitt: Not sure yet, we should include a bunch of extra information.
M_slack_mlpack_7 is now known as DivyanshKumar[m]
< DivyanshKumar[m]> Hello everyone 👋👋👋 I have a doubt that how to do good testing
< zoq> DivyanshKumar[m]: Not sure I can provide a good answer, it's challenging and often harder as writing the implementation itself. And of course depends on the method/topic.
< kartikdutt18Gitt> Ohk great, thanks a lot. I'll try adding more information and fixing it till then.
< GauravTirodkar[m> Anyone applying for the reinforcement learning project?
< AbishaiEbenezerG> yes, i did...
< DivyanshKumar[m]> Gaurav Tirodkar I have also applied for it
< GauravTirodkar[m> which algos are you guys applying ?
< DivyanshKumar[m]> I am using rainbow with NEAT
< DivyanshKumar[m]> What about you
< GauravTirodkar[m> I am looking at the Double Q-learning
< PrinceGuptaGitte> @kartikdutt18 I have looked at the dataloader you worked on in the restructuring, I had one doubt about the implementation, you have added data loader function for each different dataset. By ImageDataGenerator I meant a general utility function/class that can be used to automatically load images from directories while being labeled, just like keras does it, so it can be used on any dataset, since most of image
< PrinceGuptaGitte> datasets are available in this format where subdirectories have name of class they belong to.
< DivyanshKumar[m]> Gaurav Tirodkar nice so how you are going to test your algo
< PrinceGuptaGitte> I haven't seen your implementation of image loaders yet so I can be wrong.
< PrinceGuptaGitte> Also this way we can have features like augmentation, while loading.
< GauravTirodkar[m> What about you Divyansh Kumar?
< GauravTirodkar[m> What about you Divyansh Kumar?
< GauravTirodkar[m> I thought of training a Mario game to complete a track? What are your thoughts?
< PrinceGuptaGitte> I think I will add this feature as "if required" in the timeline, is that a good idea @zoq ?
< bisakh[m]1> Prince Gupta: That's a good idea, The same thing is done by PyTorch using ImageFolder
togo has joined #mlpack
< PrinceGuptaGitte> Thanks vikash
< zoq> PrinceGuptaGitte: Sure why not.
< PrinceGuptaGitte> Bikash*
< DivyanshKumar[m]> Gaurav Tirodkar I think about mario or some other game like that
< Saksham[m]> Gaurav Tirodkar its already implemented
< Saksham[m]> Double q learning
< DivyanshKumar[m]> I will work using pixel mechanism
< PrinceGuptaGitte> Thanks zoq
< DivyanshKumar[m]> I have a doubt that timeline should be extended showing every movement in project or just basic..
< zoq> DivyanshKumar[m]: Add details you think are important.
< kartikdutt18Gitt> @prince776, The dataloader that I am implementing is generic i.e. When I am done extending it for images it will be able to load images from directory and csv (different from csv with images in it). One thing I want to maintain in models repo is that users should be able to write simpler code and having generic function helps that.
< kartikdutt18Gitt> For augmentation, that will be added as seen from the current dataloader.
< PrinceGuptaGitte> Oh that's great.
< kartikdutt18Gitt> And one last thing, we won't have separate function for each dataset that will add to redundancy in codebase, we will have three functions, one for CSV, one for directory and one for one other for csv that has image paths. For popular datasets all values required by them will be set rather than having hard coded data loader. You can refer to how the mnist is called. If you have any questions or suggestions, let me
< kartikdutt18Gitt> know I'll try to incorporate them. More such functions can be added when they are required. As I said before you can always open a PR to add them.
y2s has joined #mlpack
< AbishaiEbenezerG> hey @zoq, for gsoc i proposed multi agent RL, where we could use a multi actor critic model (multi agent deep DPG). I also proposed to create a few relevant environments and policies.
< AbishaiEbenezerG> Maybe you have some thoughts....
< AbishaiEbenezerG> Any other mentor's inputs would be great as well
< GauravTirodkar[m> <Saksham[m] "Gaurav Tirodkar its already impl"> using mlpack? What I saw was python based
< Saksham[m]> <GauravTirodkar[m "using mlpack? What I saw was pyt"> Yes using mlpack, it’s the same file as q learning and can be used after passing a parameter
< GauravTirodkar[m> <Saksham[m] "Yes using mlpack, it’s the same "> Can you send me the link??
< GauravTirodkar[m> <GauravTirodkar[m "Can you send me the link??"> They have included Double QLearning in the project idea
< Saksham[m]> <GauravTirodkar[m "They have included Double QLearn"> <https://github.com/mlpack/mlpack/tree/master/src/mlpack/methods/reinforcement_learning>
hemal[m] has quit [Ping timeout: 240 seconds]
robertohueso has quit [Ping timeout: 240 seconds]
pickle-rick[m] has quit [Ping timeout: 240 seconds]
azwn[m] has quit [Ping timeout: 240 seconds]
srinivasyadav227 has quit [Ping timeout: 240 seconds]
ShikharJaiswalGi has quit [Ping timeout: 240 seconds]
khimrajGitter[m] has quit [Ping timeout: 240 seconds]
ayush29[m] has quit [Ping timeout: 240 seconds]
kritika12298Gitt has quit [Ping timeout: 240 seconds]
< y2s> Hello everyone. I submitted a GSoC proposal on converting more code into parallelization using OpenMP. I would appreciate if any mentor would take a look at make some suggestions :)
robertohueso has joined #mlpack
hemal[m] has joined #mlpack
srinivasyadav227 has joined #mlpack
khimrajGitter[m] has joined #mlpack
ayush29[m] has joined #mlpack
ShikharJaiswalGi has joined #mlpack
pickle-rick[m] has joined #mlpack
azwn[m] has joined #mlpack
kritika12298Gitt has joined #mlpack
< GauravTirodkar[m> <Saksham[m] "<https://github.com/mlpack/mlpac"> Thanks
incrypt0 has left #mlpack []
< JoelJosephGitter> i can see LogSoftMax in the docs, but not regular SoftMax. Is the syntax: "model.Add<SoftMax<>>();"
< kartikdutt18Gitt> Hi Joel, There is a PR open for softmax (as far as I can remember) but I don't think it's already present in mlpack.
< JoelJosephGitter> ohk
< JoelJosephGitter> :)
< JoelJosephGitter> is there a layer which can keep its output finite, like "between 0 and 1" or "-1 and +1" that is currently implemented in mlpack
< kartikdutt18Gitt> I think you could use sigmoid function or maybe some other activation function. Let me know what you think.
< JoelJosephGitter> whats the syntax for adding sigmoid
< kartikdutt18Gitt> model.Add<SigmoidLayer<>>();
< JoelJosephGitter> ill try that, thanks :)
< kartikdutt18Gitt> In general, you can refer to base_layer.hpp for more details on how activation functions are used as layers. Some activation_functions are also implemented as layer.
< GauravTirodkar[m> I was trying for Reinforcement Learning by using Double Q-Learning algo. But it seems like it is already implemented here(<https://github.com/mlpack/mlpack/tree/master/src/mlpack/methods/reinforcement_learning>). Can someone guide me with this ?
< SriramSKGitter[m> @gaurav_tirodkar : Yes, Double Q Learning is already implemented in mlpack. What did you want to know?
karthikeyan47[m4 has joined #mlpack
rcurtin[m]1 has joined #mlpack
rcurtin[m] has quit [Ping timeout: 240 seconds]
karthikeyan47[m] has quit [Ping timeout: 240 seconds]
zoq[m] has quit [Ping timeout: 240 seconds]
KarthikeyanR[m]1 has quit [Ping timeout: 240 seconds]
GauravTirodkar[m has quit [Ping timeout: 240 seconds]
bisakh[m]1 has quit [Ping timeout: 240 seconds]
Karolin[m] has quit [Ping timeout: 240 seconds]
riyouk[m] has quit [Ping timeout: 240 seconds]
Saksham[m] has quit [Ping timeout: 240 seconds]
chopper_inbound4 has quit [Ping timeout: 240 seconds]
Manav-KumarGitte has quit [Ping timeout: 240 seconds]
HimanshuPathakGi has quit [Ping timeout: 240 seconds]
AniThoGitter[m] has quit [Ping timeout: 240 seconds]
saksham189Gitter has quit [Ping timeout: 240 seconds]
PrinceGuptaGitte has quit [Ping timeout: 240 seconds]
AbhinavvermaGitt has quit [Ping timeout: 240 seconds]
aadarsh-asthanaG has quit [Ping timeout: 240 seconds]
AbishaiEbenezerG has quit [Ping timeout: 240 seconds]
ryan[m] has quit [Ping timeout: 240 seconds]
robotcatorGitter has quit [Ping timeout: 240 seconds]
kuhaku has quit [Ping timeout: 240 seconds]
Valliappan_CAGit has quit [Ping timeout: 240 seconds]
zoq[m] has joined #mlpack
GauravTirodkar[m has joined #mlpack
KarthikeyanR[m]1 has joined #mlpack
< SriramSKGitter[m> Rainbow DQN is indeed included in the projects list, but it is a combination of 6 extensions to the standard DQN, of which Double Q Learning is one. So while, Double Q Learning and a couple other components of the RainbowDQN are already implemented, there are a few which are not. https://arxiv.org/abs/1710.02298
< SriramSKGitter[m> Hope I was helpful :)
bisakh[m]1 has joined #mlpack
Karolin[m] has joined #mlpack
Saksham[m] has joined #mlpack
chopper_inbound4 has joined #mlpack
riyouk[m] has joined #mlpack
Manav-KumarGitte has joined #mlpack
AbishaiEbenezerG has joined #mlpack
kuhaku has joined #mlpack
Valliappan_CAGit has joined #mlpack
ryan[m] has joined #mlpack
AbhinavvermaGitt has joined #mlpack
< GauravTirodkar[m> Yes. Thanks A Lot !
< SriramSKGitter[m> Anytime :)
saksham189Gitter has joined #mlpack
PrinceGuptaGitte has joined #mlpack
AniThoGitter[m] has joined #mlpack
aadarsh-asthanaG has joined #mlpack
robotcatorGitter has joined #mlpack
HimanshuPathakGi has joined #mlpack
< DivyanshKumar[m]> I am using noisy nets method with gamma function will it be ok
jenkins-mlpack2 has quit [Ping timeout: 264 seconds]
azwn[m] has quit [Ping timeout: 240 seconds]
ShikharJaiswalGi has quit [Ping timeout: 240 seconds]
TanayMehtaGitter has quit [Ping timeout: 240 seconds]
HimanshuPathakGi has quit [Ping timeout: 240 seconds]
robotcatorGitter has quit [Ping timeout: 240 seconds]
AbdullahKhilji[m has quit [Ping timeout: 240 seconds]
tejasvi[m] has quit [Ping timeout: 240 seconds]
bkb181[m] has quit [Ping timeout: 240 seconds]
mlozhnikov[m]1 has quit [Ping timeout: 240 seconds]
geek-2002Gitter[ has quit [Ping timeout: 240 seconds]
siddhant2001Gitt has quit [Ping timeout: 240 seconds]
nishantkr18[m] has quit [Ping timeout: 240 seconds]
SriramSKGitter[m has quit [Ping timeout: 240 seconds]
RohitKartikGitte has quit [Ping timeout: 240 seconds]
outmanipulateGit has quit [Ping timeout: 240 seconds]
chopper_inbound[ has quit [Ping timeout: 240 seconds]
Cadair has quit [Ping timeout: 240 seconds]
PrinceGuptaGitte has quit [Ping timeout: 252 seconds]
mohona[m] has quit [Ping timeout: 246 seconds]
naruarjun[m] has quit [Ping timeout: 246 seconds]
ryan[m] has quit [Ping timeout: 246 seconds]
AbishaiEbenezerG has quit [Ping timeout: 246 seconds]
KarthikeyanR[m]1 has quit [Ping timeout: 246 seconds]
rcurtin[m]1 has quit [Ping timeout: 246 seconds]
pickle-rick[m] has quit [Ping timeout: 246 seconds]
srinivasyadav227 has quit [Ping timeout: 246 seconds]
birm[m]1 has quit [Ping timeout: 246 seconds]
rahulverma7788Gi has quit [Ping timeout: 246 seconds]
shrit[m] has quit [Ping timeout: 246 seconds]
PulkitgeraGitter has quit [Ping timeout: 246 seconds]
TaapasAgrawalGit has quit [Ping timeout: 246 seconds]
jeffin143[m] has quit [Ping timeout: 246 seconds]
RoHitRushilGitte has quit [Ping timeout: 246 seconds]
ocelaiwo[m] has quit [Ping timeout: 246 seconds]
JoelJosephGitter has quit [Ping timeout: 246 seconds]
VSaicharanGitter has quit [Ping timeout: 246 seconds]
bhanukumarGitter has quit [Ping timeout: 246 seconds]
PranavReddyP16Gi has quit [Ping timeout: 246 seconds]
abernauer[m] has quit [Ping timeout: 246 seconds]
AryamanBhagatGit has quit [Ping timeout: 246 seconds]
kartikdutt18Gitt has quit [Ping timeout: 246 seconds]
KhizirSiddiquiGi has quit [Ping timeout: 246 seconds]
riyouk[m] has quit [Ping timeout: 256 seconds]
Saksham[m] has quit [Ping timeout: 256 seconds]
benpa[m] has quit [Ping timeout: 256 seconds]
aadarsh-asthanaG has quit [Ping timeout: 240 seconds]
saksham189Gitter has quit [Ping timeout: 240 seconds]
AbhinavvermaGitt has quit [Ping timeout: 240 seconds]
bisakh[m]1 has quit [Ping timeout: 240 seconds]
khimrajGitter[m] has quit [Ping timeout: 240 seconds]
GauravSinghGitte has quit [Ping timeout: 240 seconds]
RudraPatil[m] has quit [Ping timeout: 240 seconds]
ZanHuang[m] has quit [Ping timeout: 240 seconds]
shikharj[m] has quit [Ping timeout: 240 seconds]
EL-SHREIFGitter[ has quit [Ping timeout: 240 seconds]
AniThoGitter[m] has quit [Ping timeout: 252 seconds]
Valliappan_CAGit has quit [Ping timeout: 252 seconds]
GauravTirodkar[m has quit [Ping timeout: 252 seconds]
zoq[m] has quit [Ping timeout: 252 seconds]
karthikeyan47[m4 has quit [Ping timeout: 252 seconds]
ayush29[m] has quit [Ping timeout: 252 seconds]
hemal[m] has quit [Ping timeout: 252 seconds]
himanshu_pathak[ has quit [Ping timeout: 246 seconds]
kuhaku has quit [Ping timeout: 246 seconds]
chopper_inbound4 has quit [Ping timeout: 256 seconds]
mtnshhGitter[m] has quit [Ping timeout: 256 seconds]
abhisaphire[m] has quit [Ping timeout: 256 seconds]
M_slack_18 has quit [Ping timeout: 256 seconds]
Param-29Gitter[m has quit [Ping timeout: 256 seconds]
DivyanshKumar[m] has quit [Ping timeout: 256 seconds]
NishaGeorgeGitte has quit [Ping timeout: 256 seconds]
Nakul[m] has quit [Ping timeout: 256 seconds]
sreenik[m] has quit [Ping timeout: 256 seconds]
DestinyGamer has quit [Ping timeout: 256 seconds]
Manav-KumarGitte has quit [Ping timeout: 260 seconds]
Karolin[m] has quit [Ping timeout: 260 seconds]
kritika12298Gitt has quit [Ping timeout: 260 seconds]
robertohueso has quit [Ping timeout: 260 seconds]
AmeetKumarRanaGi has quit [Ping timeout: 260 seconds]
JatoJoseph[m] has quit [Ping timeout: 260 seconds]
SakshamRastogiGi has quit [Ping timeout: 260 seconds]
SaraanshTandonGi has quit [Ping timeout: 260 seconds]
TanviAgarwalGitt has quit [Ping timeout: 260 seconds]
Shikhar-SGitter[ has quit [Ping timeout: 260 seconds]
NishantKumarGitt has quit [Ping timeout: 260 seconds]
ShivamShaurya[m] has quit [Ping timeout: 260 seconds]
RishabhGoel[m] has quit [Ping timeout: 260 seconds]
johnsoncarl[m] has quit [Ping timeout: 260 seconds]
M_slack_mlpack13 has quit [Ping timeout: 260 seconds]
AnjishnuGitter[m has quit [Ping timeout: 260 seconds]
TrinhNgo[m] has quit [Ping timeout: 260 seconds]
LakshyaOjhaGitte has quit [Ping timeout: 260 seconds]
OmarWagih1Gitter has quit [Ping timeout: 260 seconds]
GarvTambiGitter[ has quit [Ping timeout: 260 seconds]
UmarGitter[m] has quit [Ping timeout: 260 seconds]
KimSangYeon-DGU[ has quit [Ping timeout: 260 seconds]
harshitaarya[m] has quit [Ping timeout: 260 seconds]
jacob-earleGitte has quit [Ping timeout: 260 seconds]
vigsterkr[m] has quit [Ping timeout: 260 seconds]
LolitaNazarov[m] has quit [Ping timeout: 272 seconds]
MostafaNabiehGit has quit [Ping timeout: 272 seconds]
MrityunjayTripat has quit [Ping timeout: 272 seconds]
kunal12298Gitter has quit [Ping timeout: 272 seconds]
jenkins-mlpack2 has joined #mlpack
kuhaku has joined #mlpack
robertohueso has joined #mlpack
DestinyGamer has joined #mlpack
abhisaphire[m] has joined #mlpack
vigsterkr[m] has joined #mlpack
GitterIntegratio has joined #mlpack
benpa[m] has joined #mlpack
KimSangYeon-DGU[ has joined #mlpack
AbdullahKhilji[m has joined #mlpack
SlackIntegration has joined #mlpack
Cadair has joined #mlpack
karthikeyan47[m] has joined #mlpack
siddhant2001Gitt has joined #mlpack
GarvTambiGitter[ has joined #mlpack
mtnshhGitter[m] has joined #mlpack
AbishaiEbenezerG has joined #mlpack
azwn[m] has joined #mlpack
chopper_inbound[ has joined #mlpack
bisakh[m] has joined #mlpack
MostafaNabiehGit has joined #mlpack
SriramSKGitter[m has joined #mlpack
birm[m] has joined #mlpack
riyouk[m] has joined #mlpack
OmarWagih1Gitter has joined #mlpack
rahulverma7788Gi has joined #mlpack
robotcatorGitter has joined #mlpack
MrityunjayTripat has joined #mlpack
SaraanshTandonGi has joined #mlpack
kritika12298Gitt has joined #mlpack
naruarjun[m] has joined #mlpack
RohitKartikGitte has joined #mlpack
jacob-earleGitte has joined #mlpack
mohona[m] has joined #mlpack
Valliappan_CAGit has joined #mlpack
mlozhnikov[m] has joined #mlpack
tejasvi[m] has joined #mlpack
Karolin[m] has joined #mlpack
LolitaNazarov[m] has joined #mlpack
EL-SHREIFGitter[ has joined #mlpack
shikharj[m] has joined #mlpack
RishabhGoel[m] has joined #mlpack
GauravTirodkar[m has joined #mlpack
AryamanBhagatGit has joined #mlpack
TanviAgarwalGitt has joined #mlpack
KhizirSiddiquiGi has joined #mlpack
Param-29Gitter[m has joined #mlpack
NishaGeorgeGitte has joined #mlpack
harshitaarya[m] has joined #mlpack
rcurtin[m] has joined #mlpack
khimrajGitter[m] has joined #mlpack
ayush29[m] has joined #mlpack
kartikdutt18Gitt has joined #mlpack
ryan[m] has joined #mlpack
PranavReddyP16Gi has joined #mlpack
saksham189Gitter has joined #mlpack
ShikharJaiswalGi has joined #mlpack
JatoJoseph[m] has joined #mlpack
VSaicharanGitter has joined #mlpack
bhanukumarGitter has joined #mlpack
JoelJosephGitter has joined #mlpack
TaapasAgrawalGit has joined #mlpack
UmarGitter[m] has joined #mlpack
RudraPatil[m] has joined #mlpack
srinivasyadav227 has joined #mlpack
Nakul[m] has joined #mlpack
abernauer[m] has joined #mlpack
Shikhar-SGitter[ has joined #mlpack
aadarsh-asthanaG has joined #mlpack
Saksham[m] has joined #mlpack
outmanipulateGit has joined #mlpack
TanayMehtaGitter has joined #mlpack
PrinceGuptaGitte has joined #mlpack
DivyanshKumar[m] has joined #mlpack
AnjishnuGitter[m has joined #mlpack
geek-2002Gitter[ has joined #mlpack
RoHitRushilGitte has joined #mlpack
jeffin143[m] has joined #mlpack
Aadarsh[m] has joined #mlpack
pickle-rick[m] has joined #mlpack
ChaithanyaNaik[m has joined #mlpack
bkb181[m] has joined #mlpack
Manav-KumarGitte has joined #mlpack
kunal12298Gitter has joined #mlpack
hemal[m] has joined #mlpack
ocelaiwo[m] has joined #mlpack
ZanHuang[m] has joined #mlpack
LakshyaOjhaGitte has joined #mlpack
Prometheus[m] has joined #mlpack
himanshu_pathak[ has joined #mlpack
HimanshuPathakGi has joined #mlpack
NishantKumarGitt has joined #mlpack
AmeetKumarRanaGi has joined #mlpack
TrinhNgo[m] has joined #mlpack
shrit[m] has joined #mlpack
zoq[m] has joined #mlpack
chopper_inbound4 has joined #mlpack
GauravSinghGitte has joined #mlpack
ShivamShaurya[m] has joined #mlpack
SakshamRastogiGi has joined #mlpack
AbhinavvermaGitt has joined #mlpack
nishantkr18[m] has joined #mlpack
PulkitgeraGitter has joined #mlpack
AniThoGitter[m] has joined #mlpack
KimSangYeon-DGU has joined #mlpack
< GauravTirodkar[m> Has Duel DQN being implemented ?
< Saksham[m]> <GauravTirodkar[m "Has Duel DQN being implemented ?"> No not yet
< GauravTirodkar[m> <Saksham[m] "No not yet"> OH Great
< GauravTirodkar[m> <GauravTirodkar[m "OH Great"> Thanks
KimSangYeon-DGU has quit [Ping timeout: 240 seconds]
johnsoncarl[m] has joined #mlpack
sreenik[m] has joined #mlpack
< LakshyaOjhaGitte> Hey @sreenik I have done some updates in the same proposal hope you get time to review the same. :)
< LakshyaOjhaGitte> Gn
< sreenik[m]> ojhalakshya[m]: Sure, I'll do it now
< GauravTirodkar[m> I've completed my proposal, how can I get it reviewed ?
< AnjishnuGitter[m> Hi! @zoq @sreenik I have uploaded a draft proposal. Could you have a look at it if you get some time? Thanks!
< GauravTirodkar[m> Hello !! I have completed and uploaded the draft on GSoC. Please verify it as time permits. Thanks in advance !!
< naruarjun[m]> Hello, I had submitted a draft on 22nd March. It would be really appreciated if any of the mentors could review it. Especially @zoq or Manish Kumar as they are listed as potential mentors for the RL project.
< zoq> naruarjun[m]: What's the title of the application, pretty sure I checked the RL applications at that point.
< naruarjun[m]> <zoq "naruarjun: What's the title of t"> Implementation A2C, PPO and TRPO for mlpack
< sreenik[m]> iamshnoo[m]: Sure. I actually scrolled through it but I guess I'll take some time to review it. I hope it's not an issue :)
< AnjishnuGitter[m> Sure! Its a bit lengthy. Thanks for just scrolling through it even :)
ImQ009 has quit [Quit: Leaving]
< zoq> naruarjun[m]: Ahh, I can't comment on the draft.
< naruarjun[m]> * > <@freenode_zoq:matrix.org> naruarjun: What's the title of the application, pretty sure I checked the RL applications at that point.
< naruarjun[m]> Implementation of A2C, PPO and TRPO for mlpack
< sreenik[m]> iamshnoo[m]: haha
< naruarjun[m]> <zoq "naruarjun: Ahh, I can't comment "> Oh, why is that? Is it some setting issue from my side?
< zoq> naruarjun[m]: Yes, nothing I can do.
< sreenik[m]> naruarjun: It's probably because you haven't given proper permissions to the google doc
< naruarjun[m]> I have changed it
< zoq> naruarjun[m]: Don't think the default setting allows anyone to comment on the doc.
< naruarjun[m]> Sorry I didn’t know I had to change the can view to can edit as well. Hope you can review it.
< zoq> naruarjun[m]: No worries, we can always mail people after the deadline and ask for clarification, if there is something that needs clarification.
< abhisaphire[m]> Hey zoq zoq
< abhisaphire[m]> If you have time, please re-visit my proposal too and check if i have made correct adjustments according to your comment oe not. (Name - Abhishek kumar Singh)
< abhisaphire[m]> Proposal on automatic binding generator for Octave
< naruarjun[m]> <zoq "naruarjun: No worries, we can al"> Ok. Thanks for the help.
< zoq> abhisaphire[m]: Don't think I can re-visit a proposal, if you addressed the comments it's fine, we can aks for clarification after the deadline, so no worries.
< Param-29Gitter[m> Hey @zoq, if you have time please have a look on my proposal too .
< zoq> Param-29Gitter[m: What's the title?
< Param-29Gitter[m> Profiling for parallelism
< zoq> Hm, I think I looked into that application, maybe not.
< Saksham[m]> Hi zoq I submitted my proposal 4-5 days ago, please have a look when you get time
< Saksham[m]> It’s on Enhance CMA-ES
< Param-29Gitter[m> I checked the settings, they are fine.
< GauravSinghGitte> Hi, @zoq if you get a chance kindly review my proposal also. Applied for 'Enhance CMA-ES'. Thank you.
< zoq> GauravSinghGitte: Done, like some minutes ago.
< GauravSinghGitte> Thank you very much @zoq for the review and regarding the link you asked for the project I haven't uploaded iton github yet. Will email you the link once I do it. Thanks.
< GauravSinghGitte> (edited) ... uploaded iton github ... => ... uploaded it on github ...
< zoq> GauravSinghGitte: Ahh okay, thanks, I will definitely apply the cf code and see how far we are from the winning solution.
KimSangYeon-DGU has joined #mlpack
louisway has joined #mlpack
KimSangYeon-DGU[ has quit [Quit: Idle for 30+ days]
riyouk[m] has left #mlpack []
shikharj[m] has quit [Quit: Idle for 30+ days]
ayush29[m] has quit [Quit: Idle for 30+ days]
Nakul[m] has quit [Quit: Idle for 30+ days]
abernauer[m] has quit [Quit: Idle for 30+ days]
ocelaiwo[m] has quit [Quit: Idle for 30+ days]
bkb181[m] has left #mlpack []
< y2s> wow, zoq[m], may I also ask you to review my proposal? It's on profiling for parallization
< zoq> y2s: Hm, not sure I can see the application, what name did you use?
< y2s> zoq[m]: my name is Tony Sim, and my google id is y2s1982. Hope that helps
< zoq> y2s: Via the GSoC dashboard?
< y2s> yes
< zoq> y2s: "Profile-driven parallelization using OpenMP"?
< y2s> that's me :)
< zoq> y2s: I see, that is already marked as final, I can comment on the draft but I don't think you can submit a change.
< y2s> oh, I can. It told me to resubmit as much as I wish. I already resubmitted a few times, too
< zoq> y2s: ahh nice
< y2s> zoq, I really appreciate it.
KimSangYeon-DGU has quit [Remote host closed the connection]
togo has quit [Quit: Leaving]