Results 15 comments of comntr

Attaching the 7 MB weights file: [weights.zip](https://github.com/gosha20777/keras2cpp/files/3078555/weights.zip)

I've added some logging and got this: ```py def export_model(model, filename): with open(filename, 'wb') as f: layers = [layer for layer in model.layers if type(layer).__name__ not in ['Dropout']] f.write(struct.pack('I', len(layers)))...

I guess it's just this lib doesn't implement the Keras TimeDistributed layer. "Fixing" it this way in the original keras-char-rnn model: ```py # model.add(TimeDistributed(Dense(vocab_size))) model.add(Dense(vocab_size)) ``` Training still converges, the...

One similar issue that I've seen on Firefox desktop (Ubuntu), was that Firefox didn't like the LetsEncrypt cert. To check if this is the case, open https://comntr.live:42751 in a new...

If you see this bug often, it makes sense to do this logging sonner. The extension (background.js essentially) needs to forward all logs to a table in indexedDb, but the...

I appreciate the attention to my small project :) 1. This is now fixed. Albeit the icon could be more colorful. I'll fix this a bit later. 2. If the...

The extension shouldn't affect the site in any way. It runs `background.js` that listens to the "tab updated" event, sets a 1 sec timeout and if the tab hasn't changed...

I don't quite get the idea. Is it just about sending half of the hash when checking for comments count?

I see. I think it's doable - I mean, this shouldn't have a prohibitive perf hit on the server. These hashes have to be organized in a this prefix-tree structure...

I've opened #8 to track this.