- add RbmParams.from_dict

- added stack construction
- added empty implementation of Deep Stack and Rnn Stack
This commit is contained in:
2025-12-17 10:48:43 +01:00
parent 0bebf20bdd
commit 437ffbdaad
4 changed files with 105 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
from stack import Stack, StackType
class StackDeep(Stack):
def __init__(self, name: str):
Stack.__init__(self, StackType.Deep, name)