Benjamin Crouzier

Results 8 issues of Benjamin Crouzier

I have Alert and AlertSub. AlertSub has_many :alerts. ``` ruby [56] pry(main)> Alert.first.data Alert Load (0.6ms) SELECT "alerts".* FROM "alerts" LIMIT 1 => {"toto"=>"tata"} # type hash, ok ``` ```...

In deep learning setup I am experimenting with fancy convolutions, such as transpose conv, 1D and causal. (For an example of causal conv, see this: https://github.com/locuslab/TCN/blob/ec2ee1038c941a2f56af66915135a1a892043aed/TCN/tcn.py#L6, you shift the input...

For the users syncing the rider to music, I think it would be pretty helpful to be able to load a mp3/wav file and have the audio displayed just below...

I've looked at the code for evonorm layers, it seems that you expect a 4d (n,c,h,w) shape. I need evonorm with 1d convolutions, for this it seems the only way...

I am using collection2, simple-schema and meteor-collection-hooks. **First test** ``` javascript // posts.js Posts = new Mongo.Collection("posts"); Posts.before.insert((userId, doc) => { console.log('Should see this'); }); //////////////////////////////////////////////////////////////// // Then in meteor...

I noticed that any output besides the loss graph of livelossplot gets cleared at each training iteration. (anytime I call `liveloss.draw()`) Do you have a way of keeping that output...

It looks like pg-live-select is currently working with manual triggers. This is a lot of work and hard to do right. Is the live-select functionality achievable with the Logical Decoding...

I have an issue where gzippo overrides the http headers, and it causes my html files to never refresh. For example: **express.js:** ``` var express = require('express'); var app =...