Nima Gardideh
Nima Gardideh
Okay, cool :) I suppose I'll have to move some things around after your merge, since you're using a new system? Or will you be taking care of that :)...
@salamanders – were you able to solve this issue?
hey @karpathy – that actually doesn't fix the problem. You can get rid of the warning by changing this line in `deepqlearn.js#254`: ``` var loss = this.tdtrainer.train(x, ystruct); ``` to...
@DrGlennn – I thought the backward function is the one in the `RegressionLayer` class (which accounts for an arrayed y value. ``` if(y instanceof Array || y instanceof Float64Array) {...
@prescottprue any plans on making this work (original description of the issue describes my problem)? Realized populate only works when I'm not passing a `doc` parameter (i.e. not pulling a...
So in this scenario, I would expect `_venue` on the `poets` collection to be populated: ```javascript const PoetsList = compose( firestoreConnect((props, state) => [ { collection: 'poets', orderBy: ['name'], limit:...
Yes – that's really what I've been trying to say, but utterly failing at it. I want `populate` to support ordered population :P
@deathg0d this was meant as a proof of concept and doesn't have an easy way to create a standalone version of itself atm. I think the best you can do...
We're using a softmax (IIRC) here to optimize for classifying one thing. A network to do multi-label classification would be far more complex in terms of its architecture and a...
+1 on this one. Having the same problem with restarting the process. Lots of lingering java processes.. I'm solving this for now by doing a `killall java` since the machine...