verne.freenode.net changed the topic of #mlpack to: http://www.mlpack.org/ -- We don't respond instantly... but we will respond. Give it a few minutes. Or hours. -- Channel logs: http://www.mlpack.org/irc/
govg has quit [Ping timeout: 240 seconds]
govg has joined #mlpack
vivekp has quit [Ping timeout: 264 seconds]
sumedhghaisas has joined #mlpack
sumedhghaisas has quit [Remote host closed the connection]
sumedhghaisas has joined #mlpack
vivekp has joined #mlpack
jenkins-mlpack has quit [K-Lined]
rcurtin has quit [K-Lined]
zoq_ has joined #mlpack
zoq has quit [Quit: Leaving.]
kris1 has joined #mlpack
mikeling has quit [Ping timeout: 255 seconds]
mikeling has joined #mlpack
vivekp has quit [Ping timeout: 240 seconds]
vivekp has joined #mlpack
< partobs-mdp> zoq: Did you figure out the issue with parameters variable?
< zoq> partobs-mdp: Not sure, what you mean, can you help me?
< partobs-mdp> <partobs-mdp> zoq: rcurtin: Rolled back to the pre-LayerTypes version. Now trying to add Parameters() function (for gradients) What do you think about API? (in the latest commit)
< partobs-mdp> <partobs-mdp> Also, could you take a look at the strange issue with parameters being treated as a size_t? (Will be in a compiler error message)
< partobs-mdp> By the way, I feel fair to remind that I'm leaving to Moscow in a week's time, so I'm available for the project before Friday, 25 Aug (and maybe on 31 Aug, when I arrive back)
< zoq> Ah sorry, haven't seen the message, got disconnected from IRC ...
< zoq> When do you leave, before August 25 or after?
< zoq> Thanks for the reminder.
< partobs-mdp> On 25 Aug (7pm Moscow Time, 4pm GMT, if I remember the ticket correctly)
< zoq> Okay, we should make sure you submit the necessary code to the google platform before you leave.
< zoq> Do you see any other message that we missed? My last message is: "19:36 < kartik_> ohkay.. thanks :)"
< partobs-mdp> Well, I don't remember myself sending any more messages :) 19:36 - what time zone?
< zoq> UTC
< partobs-mdp> Nope, no missed messages from my side :)
< zoq> Okay, great thanks!
< partobs-mdp> There is one message, but it was some global anti-spam message :)
< partobs-mdp> -kline- [global notice] Hi there: freenode is experiencing a large quantity of spam. If you receive links from users you don't recognise, please do not open them. If you are affected, please set usermode +R to block messages from unidentified users.
< partobs-mdp> -kline- [global notice] Additionally, while working to minimise this spam, staff error led to the majority of the network receiving a temporary K-Line (network ban). The ban has since been lifted and those affected should be able to reconnect. Please accept our apologies, and contact us if you, or someone you know, still cannot connect.
< partobs-mdp> But I honestly don't find this relevant :)
< zoq> Yeah, not relevant for the mlpack channel :)
< zoq> about the parameters issue; I guess there is a missing ';' after writeCount = writeParams.n_elem,
< zoq> I mean replace the ',' with ';'
< partobs-mdp> zoq: Now waiting while it compiles; meanwhile, could you say do you think that it's OK to do the Parameters method as it is done right now?
< partobs-mdp> (It compiled - now waiting for linking and running corresponding unit test)
< partobs-mdp> Also, I took a closer look on the technology of the GSoC blog, and I should admit I like the static blog idea.
< zoq> I'll take a look at the changes right now.
< partobs-mdp> Could you tell me what was the rationale behind choosing Pelican engine? (I just don't know much yet about static blog engines)
< zoq> I used it before :) and back in the days Jekyll wasn't that famous.
< partobs-mdp> By the way, it successfully compiled, but there is a logic error (copying 27x1 matrix to 36x1 slot) - should be easily fixable :)
< zoq> I think something like this would also be nice to have: http://donw.io/post/github-comments/
< zoq> :)
< zoq> Btw. do you think it's a good idea to visit Moscow in December/January?
< partobs-mdp> Well, I was one there in February - it was moderately cold (-8 ~ -12 C) and there was some snow
< partobs-mdp> Extrapolating, I guess that in December it should be similarly cold with with more snow - which should also be more stereotypical of the Russian weather, by the way :)
< partobs-mdp> So yes, it should be a nice time if you go for a moderately cold wather
< partobs-mdp> But, of course, YMMV
< partobs-mdp> zoq: As a follow-up on the comment thing, do you know about any nice *static* comment engines? (As a bonus it would be nice to have a chance to use MathJax in the comments as well as in the blog itself)
< partobs-mdp> Follow-up 2 (on the compiler thing) - I have found the silly copy-paste error, now waiting for the results
< zoq> Not sure there is a nice solution for the comments, at the end you end up with some php code ...
< zoq> -8 is kinda cold, not sure if I could enjoy the day after spending 2 hours outside :)
< partobs-mdp> Follow-up 3 (on Moscow thing) - December get bonus points for a really nice pre-New Year environment (which is traditionally the thing taken seriously in our culture)
< zoq> But, Moscow or Saint Petersburg is so different from everything I've seen before
< zoq> hm, the problem with the RebuildParameters method is, that if you change parameters you don't change the parameters in the corresponding model e.g. embed.
< zoq> But. Kris encountered a similar problem, let me dig up the code
< partobs-mdp> zoq: It compiled and ran nicely, so the only problem to solve is the Parameters() method
< zoq> The only problem I see is that, we reinitialize the networks.
< partobs-mdp> zoq: By the way, did you manage to run MathJax with custom fonts? (e.g., Neo Euler --- the one used in "Concrete Mathematics")
< partobs-mdp> As much as I like MathJax project I don't really like standard Computer Modern fonts (Neo Euler is more appealing for me, for example)
< zoq> on the mlpack blog? haven't tried it
< zoq> I agree looks nice, I can take a look into it
< zoq> I think, for our case a reinitialization isn't a problem, we can adjust the network init class, later.
< partobs-mdp> zoq: I've also done a unit test for Parameters() method - not afraid to break anything now :)
< partobs-mdp> (I pushed it into my GitHub fork now)
< zoq> we have to adjust the test case, remove the Reset Parameters(); calls and do the parameter initialization after the hamUnit instantiation. But that should be straightforward, let me know if you need help with the initialization code.
< partobs-mdp> zoq: Sorry, didn't quite understand you - could you elaborate on that?
< zoq> The problem I see with the current buildParameters method is that we only copy the parameters, but if we change something in parameters we don't change the model parameter. So I propose to use the NetworkInit class, as used in the GAN PR, which reinitializes the parameters; means everything you did before the ham instantiation is removed. So the test would fail, but if we set the parameter after the
< zoq> instantiation we are good to go.
partobs-mdp has quit [Remote host closed the connection]
govg has quit [Ping timeout: 240 seconds]
rcurtin has joined #mlpack
< rcurtin> knife.lugatgt.org banned from freenode for spamming? not sure what that is about... sending an email now...
< rcurtin> (that's the system I connect to #mlpack from)
< rcurtin> unfortunately this means logs will be down for a little while until this gets resolved
< zoq> same here, restart fixed the problem for me
< rcurtin> oh? ok, I will not send an email then
< rcurtin> let's see...
rcurtin is now known as rcurtin_desktop
rcurtin has joined #mlpack
< rcurtin> well, ok, that works fine, I guess I should have tried that before composing the email to kline@freenode.net :)
govg has joined #mlpack
vivekp has quit [Ping timeout: 255 seconds]
mikeling has quit [Quit: Connection closed for inactivity]
sumedhghaisas_ has joined #mlpack
sumedhghaisas_ has quit [Ping timeout: 260 seconds]
sumedhghaisas_ has joined #mlpack
sumedhghaisas_ has quit [Read error: Connection reset by peer]
kris1 has quit [Quit: kris1]
kris1 has joined #mlpack
< kris1> Could somebody have a look at this
kartik_ has joined #mlpack
< kartik_> <zoq> to get random values from calling mlpack random function, the seed value should be made zero ?
< kartik_> i am getting the same set of values every time
< zoq> kartik_: Just commented on the PR.
< zoq> kris1: What do you mean with "the error is in dropout layer at i = 5"?
< kris1> network[5] has the error with dimensions
< kris1> More than that the error is gy % mask * scale line of the dropoout layer.
< zoq> Sounds like the conv setting aren't correct.
< kris1> But then why does the forward pass go through…..at all
< zoq> Did you build with DEBUG=OFF?
< kris1> nopes -g flag is on
< zoq> I guess either are the conv setting off my some value or there is a flaw in the conv layer backward step.
< zoq> Looks like another debug session, unfortunately I can't look into it before Saturday.
< kris1> That is okay i would in meanwhile try with another set of values….
kartik_ has quit [Ping timeout: 260 seconds]
kris1 has left #mlpack []
kris1 has joined #mlpack
< zoq> kris1: If you test other values, start with pad = 0 and stride = 1.