공식사이트 : https://www.tensorflow.org/?hl=ko
- tf.placeholderrnn
- dtype: The type of elements in the tensor to be fed.
- shape: The shape of the tensor to be fed (optional). If the shape is not specified, you can feed a tensor of any shape.
- name: A name for the operation (optional).
- tf.contrib.rnn.BasicLSTMCell
일부 사용하는 arg 를 기입해놈
- num_units : int 형의 유닛 갯수
- state_is_tuple : true 일시 두개의 state 를 돌려주고 false 일시 하나의 state로 돌려준다.
- tf.nn.dynamic_rnn
cell, inputs, sequence_length=None, initial_state=None, dtype=None, parallel_iterations=None, swap_memory=False, time_manjor=False, scope=None |
- cell :
returns:
(outputs,state)
- outputs : The RNN output Tensor
'딥러닝' 카테고리의 다른 글
[딥러닝] 1.Tensorflow 개발환경설정 (0) | 2018.05.23 |
---|