File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
python/paddle/fluid/layers Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 27
27
'merge_lod_tensor' ,
28
28
'BlockGuard' ,
29
29
'BlockGuardWithCompletion' ,
30
- 'StaticRNNMemoryLink' ,
31
30
'WhileGuard' ,
32
31
'While' ,
33
32
'Switch' ,
@@ -410,16 +409,17 @@ class StaticRNNMemoryLink(object):
410
409
"""
411
410
StaticRNNMemoryLink class.
412
411
413
- Args:
414
- init: the initial variable for Memory
415
- init: Variable
416
- pre_mem: the memory variable in previous time step
417
- pre_mem: Variable
418
- mem: the memory variable in current time step
419
- mem: Variable
420
-
421
412
StaticRNNMemoryLink class is used to create a link between two
422
413
memory cells of a StaticRNN.
414
+
415
+
416
+ NOTE: This is a internal data structure of a very low-level API.
417
+ Please use StaticRNN instead.
418
+
419
+ Args:
420
+ init(Variable): the initial variable for Memory.
421
+ pre_mem(Variable): the memory variable in previous time step.
422
+ mem(Variable): the memory variable in current time step.
423
423
"""
424
424
425
425
def __init__ (self , init , pre_mem , mem = None ):
You can’t perform that action at this time.
0 commit comments