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/
kris__ has quit [Quit: Connection closed for inactivity]
kris___ has quit [Quit: Connection closed for inactivity]
vivekp has quit [Ping timeout: 240 seconds]
vivekp has joined #mlpack
mikeling has joined #mlpack
rcurtin_desktop has quit [Read error: Connection reset by peer]
kris1_ has joined #mlpack
kris1_ has quit [Quit: kris1_]
kris1_ has joined #mlpack
kris__ has joined #mlpack
vivekp has quit [Ping timeout: 240 seconds]
vivekp has joined #mlpack
vivekp has quit [Ping timeout: 240 seconds]
vivekp has joined #mlpack
vivekp has quit [Ping timeout: 248 seconds]
vivekp has joined #mlpack
kris1_ has quit [Quit: kris1_]
kris1_ has joined #mlpack
vivekp has quit [Ping timeout: 240 seconds]
vivekp has joined #mlpack
kris1_ has quit [Quit: kris1_]
kris1_ has joined #mlpack
vivekp has quit [Ping timeout: 246 seconds]
vivekp has joined #mlpack
vivekp has quit [Ping timeout: 240 seconds]
vivekp has joined #mlpack
vivekp has quit [Ping timeout: 240 seconds]
vivekp has joined #mlpack
kris1_ has quit [Quit: kris1_]
vivekp has quit [Ping timeout: 240 seconds]
vivekp has joined #mlpack
abiduzz has joined #mlpack
abiduzz has quit [Client Quit]
vivekp has quit [Ping timeout: 260 seconds]
mikeling has quit [Quit: Connection closed for inactivity]
kris1 has joined #mlpack
mikeling has joined #mlpack
kris1 has quit [Read error: Connection reset by peer]
kris1 has joined #mlpack
< kris__>
lozhnikov: I made most of the changes that you asked for ResizeLayer.
< kris__>
But i can't get the backward pass test right.
< kris__>
Though by visual inspection of image from the backward pass it looks very close to the input.
< kris__>
zoq: Regarding the ssRBM could you explain your comments a little bit more. I asked a doubt on the github if you could explain it. That would be great.
< lozhnikov>
kris__: It seems you misunderstood my suggestion.
< lozhnikov>
I suggested to fill the matrix using a linear function e.g. f(x) = ax + by
< lozhnikov>
i.e. matrix(i, j) = a * i / nx + b * j / ny,
< lozhnikov>
where (nx, ny) is the shape of the matrix
< lozhnikov>
moreover, you didn't take into account the computation accuracy
< lozhnikov>
the precision of double is equal to 1e-16 around 1
kris1 has quit [Quit: kris1]
kris1 has joined #mlpack
kris1 has quit [Client Quit]
kris1 has joined #mlpack
< kris__>
Okay so the test you are suggesting is scale(matrix(i,j) and compare it with what?
< lozhnikov>
kris__: with the same linear function
< lozhnikov>
i.e. output(i, j) should be equal to a * i / outNx + b * j / outNy, where (outNx, outNy) is the shape of the output matrix
< kris__>
why i / outNx and not i % outNx
< kris__>
okay i think i get it.
< kris__>
Let me first test out the present implementation with cnn architecture and then i would update the test.
< kris__>
The paper states that without the batch normalisation the results of the present gan are pretty poor.
< kris__>
Should i implement the BatchNormalisation before moving ahead.
< lozhnikov>
That's quite interesting, but in that case we have to do the same tests again. I think you haven't got enough time for that (until the final evaluation). I suggest to finish the oreilly test first since we spent a lot of time to prepare for this test. Anyway, you can do that after GSoC
< kris__>
Okay sure..... i am done with orilley implementation. I will run the test and see the results....:)
< kris__>
lozhnikov is this test okay for the resize layer.
< kris__>
For the orilley example. The problem is the Forward pass itself is taking a lot of time. I see that it is stuck in valid convolution function.
< kris__>
Can you look at the code once ..... i am not very comfortable with convolution code so i am not sure if the code is correct.
< kris__>
zoq: Could you have a look at the above code.