Benjamin Hill
Benjamin Hill
I get a warning every loop when running the brain demo code: ``` if(this.regression && y.constructor !== Array) console.log("Warning: a regression net requires an array as training output vector."); ```...
BrickPi3, ev3dev, lejos, lego-ev3-gyro sensor, I’m getting odd readings. I was expecting degrees, but instead get 0-255 as I tilt the sensor. ## Expected Outcome From the ev3-gyro-sensor docs, it...
I *think* that this would be an easy feature given the great foundation in this project, and what Kotlin can do with delegates. In my class, I'd like to have...
The docker instructions are very simple (thank you!) ``` bash mkdir data cp my_config.cfg data/cayley.cfg docker run -v $PWD/data:/data -p 64321:64321 -d quay.io/barakmich/cayley ``` Any hope of a similar small...
After reading the docs, I wasn't sure if I could start up a reasonably performing DB on (in order of preference) - [Google App Engine running golang](https://cloud.google.com/appengine/docs/go/) - [Google Managed...
I've generated and cached a chromaprint for 10k files. Now I'd like to find duplicates. My naive method is N^2: ```kotlin prints.forEachIndexed { index, print -> val smallestNotSelf = prints.drop(index...
When I call evaluateCrossValidation, I may want to give up after a certain amount of time. Instead of building in some "isRunning" boolean, would it be easier to check in...
This seems perfect for annotations: ``` java @TunableParameter( name="RBFKernel_Sigma", minValue=0.001, maxValue=2_000, startValue=1832, tunePriority=TunableParameterPriority.HIGH ) ```
I got it working... but it was brutal, about 300 lines of code. I feel like I did it the hard way, but I wasn't sure if there was an...
I did a bad thing :) and used reflection to try to instantiate, train, and test every classifier you got, using brain-dead no-arg or simple arg constructors. With autoAddParameters, cause...