danieldjohnson / biaxial-rnn-music-composition

A recurrent neural network designed to generate classical music.
BSD 2-Clause "Simplified" License
1.91k stars 380 forks source link

model #5

Closed hugo-pires closed 8 years ago

hugo-pires commented 8 years ago

Hello

When I try to run m = model.Model([300,300],[100,50], dropout=0.5)

from python shell program doesn't give me any response (even error message)

Could you help me?

Thank you

hugo-pires commented 8 years ago

Correction: Error message

model.py:367: UserWarning: Updating an OrderedUpdates with a non-ordered dictionary with 2+ elements could make your code non-deterministic self.walk_input: next_input model.py:370: UserWarning: Updating an OrderedUpdates with a non-ordered dictionary with 2+ elements could make your code non-deterministic updates.update({hidden:newstate for hidden, newstate, layer in zip(self.walk_hiddens, new_states, self.time_model.layers) if has_hidden(layer)})

danieldjohnson commented 8 years ago

It takes a long time for Theano to compile the model, so it doesn't show output for a while. And that warning doesn't apply in this case. If you just wait long enough, it should complete.

sneh-d commented 6 years ago

Facing same problem. It does not work