raw_rnn_encoder.py 文件源码

python
阅读 22 收藏 0 点赞 0 评论 0

项目:neuralmonkey 作者: ufal 项目源码 文件源码
def _make_rnn_cell(spec: RNNSpec) -> Callable[[], RNNCell]:
    """Return the graph template for creating RNN cells."""
    if spec.cell_type == "GRU":
        def cell():
            return OrthoGRUCell(spec.size)
    elif spec.cell_type == "LSTM":
        def cell():
            return tf.contrib.rnn.LSTMCell(spec.size)
    else:
        raise ValueError("Unknown RNN cell: {}".format(spec.cell_type))

    return cell


# pylint: disable=too-many-instance-attributes
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号