Files
pyRBM/src/rbm/stack_deep.py
T
jens 437ffbdaad - add RbmParams.from_dict
- added stack construction
- added empty implementation of Deep Stack and Rnn Stack
2025-12-17 10:48:43 +01:00

6 lines
137 B
Python

from stack import Stack, StackType
class StackDeep(Stack):
def __init__(self, name: str):
Stack.__init__(self, StackType.Deep, name)