(batch_size, dim=1000)
| 38 | |
| 39 | |
| 40 | def transition(batch_size, dim=1000): |
| 41 | model = Sequential() |
| 42 | model.add(CondDreamyRNN(unroll=True, output_dim=z_dim, output_length=out_leng, return_sequences=True, activation="tanh", batch_input_shape=(batch_size, time+out_leng, z_dim+2))) |
| 43 | return model |
| 44 | |
| 45 | |
| 46 | def get_model(sess, image_shape=(80, 160, 3), gf_dim=64, df_dim=64, batch_size=64, |
no test coverage detected