rbm: use update interval of 1%

This commit is contained in:
2025-12-18 11:43:34 +01:00
parent 905ae8da81
commit 470d2bfa9a
+1 -1
View File
@@ -13,7 +13,7 @@ def cv_show(name: str, vec: np.array, shape):
class MyStatus(Status):
def __init__(self, _stack: StackDeep, _batch: np.ndarray):
Status.__init__(self, update_interval=10)
Status.__init__(self, update_interval=1)
self.stack = _stack
self.batch = _batch
self.index = 0