Will Jessup
Will Jessup
the links to the code for local dev in the readme dont work unless you go in and add "let" on line 746.
using the latest dist at https://github.com/aframevr/aframe/tree/master/dist whenever I try to use es6 modules to import aframe: `import './aframe.min.js'` I get this error: `aframe.min.js:19685 Uncaught TypeError: systems[name] is not a constructor...
In datastore.js line 5 var assign = require('./secret'); this doesn't come w/ the default package
datastore.js line 8 var assign = require('object-assign'); doesn't come in the default package and install instructions
Seems like all methods return arrays of same length. Need to be able to filter and return an array with less elements than what went in. Whats the best way...
Convert to ipynb and run: https://gist.github.com/wjessup/ce49625cb551af8663059b93cbfab209 Takeaways: Smaller network torch is 3-5x faster Forward: (45.5 µs vs 235 µs) and Training: (337 µs vs. 1.22 ms) 640 x 4 layers...
I'm working on the DQN code but overall it's still 10x slower than torch. I've narrowed the issue down to a line with only an `argmax`. Can anyone help me...
Just a quick suggestion to clear this up with examples. I had to check the source at https://github.com/scottwrobinson/camo/blob/master/lib/db.js to get the right format.
Here's an attempt at being able to replay with a different action. If the step terminates, use a copy of the environment and use a different action. ``` env =...
I followed the code structure and added in the vertexColors to the Face3 that come from Geometry.colors. This is used when color is applied by the shader to each vertex...