Nao Tokui

Results 9 comments of Nao Tokui

I have a CodePen sketch based on Tero's amazing Neural Drum Machine. Every time I tried to generate sequences (`sampleRnn()`) using my own model, I got this error: ``` magentamusic.js:45133...

Thank you! here are my checkpoints: https://www.dropbox.com/sh/84ohnr9ee8yvzvm/AADn70s7HGzcLhQkLAfEaRbna?dl=0

Have you solved this problem?? Thanks for your advice @mcwebdev

Hi @Makejorton Could you try the following steps? 1. Open the device in Max in Ableton. 2. Find and click `script npm install` button on the top left. (Make sure...

this one? http://yknzhu.wixsite.com/mbweb

oh, my bad. I accidentally deleted the file. could you try this link instead? https://drive.google.com/file/d/1VL7kfHGMTcpniZllKZtNnN1inT9AsNzu/view?usp=sharing

Any info on this topic?? I'd love to know how to generate the style vectors.

@djqualia @lucidrains thanks for your comments! I tried with `batch_size = 4` and `8`. I'll try again with the reverted version and see how it goes!

`pickle` or `dill` doesn't work in my case. but this works: ``` # saving model = Seq2Seq(input_shape... ....) model.fit(...) model.save_weights('model.h5') # loading #### model = model_from_json() #