6 lines
167 B
Python
6 lines
167 B
Python
from .stack import Stack, StackType
|
|
|
|
class StackRnn(Stack):
|
|
def __init__(self, name: str, work_dir: str = '.'):
|
|
Stack.__init__(self, StackType.Rnn, name, work_dir)
|