Deep-Learning-21-Examples
Deep-Learning-21-Examples copied to clipboard
lstm那里代码有错误,230页
output, h1 = lstm_cell.call(inputs, h0) 会报错
正确为 output, h1 = lstm_cell(inputs, h0)