Leon Chen

Results 19 comments of Leon Chen

@anaderi yeah, you need to start atom with the `--disable-gpu` flag

ah, sorry! I just saw that you're on 1.13.0-dev. I haven't tested that yet. Maybe it has something to do with the removal of the shadow dom? Let me know...

Yeah, I've had the same issue in macOS, while it works perfectly in ubuntu. I wonder if this would solve it in macOS: https://github.com/electron/electron/issues/8847

Yep, right now, `predict()` takes in single inputs, so to predict on a batch, you can do something like (model.predict returns a Promise): ``` js // using bluebird Promises let...

@unsalted you mean in a `Sequential` model? The input data object is keyed by the names of the input layers, or just `input` for Sequential models, so the above example...

Edited my comment above as it was misleading. `Promise.all` runs each item in parallel, and that does not work unless you have multiple instances of the model available and you...

I've been reading some of Yarin's work. This is quite interesting! It could be a nice unique feature, especially if it could be made interactive. It would probably be implemented...

Yep, good catch. It isn't supported currently, but definitely should be.

@Reichenbachian Based on your architecture, shouldn't `dilation_rate` be `1` (default)? In which case, why is it throwing this error at all? Can you check your model architecture definition and see...

Ah I see, it's because keras is converting these to tuples internally: https://github.com/fchollet/keras/blob/master/keras/layers/convolutional.py#L104-L107, https://github.com/fchollet/keras/blob/master/keras/layers/convolutional.py#L153-L156 Will need to fix.