Skip to content

Instantly share code, notes, and snippets.

View jackhuntcn's full-sized avatar
🎯
Focusing

Heng Zheng jackhuntcn

🎯
Focusing
  • GuangZhou, China
View GitHub Profile
@fchollet
fchollet / new_stacked_rnns.py
Last active August 13, 2019 15:23
New stacked RNNs in Keras
import keras
import numpy as np
timesteps = 60
input_dim = 64
samples = 10000
batch_size = 128
output_dim = 64
# Test data.