- add RbmParams.from_dict
- added stack construction - added empty implementation of Deep Stack and Rnn Stack
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
from stack import Stack, StackType
|
||||
|
||||
class StackDeep(Stack):
|
||||
def __init__(self, name: str):
|
||||
Stack.__init__(self, StackType.Deep, name)
|
||||
Reference in New Issue
Block a user