feat: move train over dataset logic to Autoencoder class

This commit is contained in:
Lenoctambule
2026-03-27 07:07:41 +01:00
parent af9a0c70b2
commit 9859863ec9
2 changed files with 56 additions and 39 deletions

View File

@@ -1,7 +1,12 @@
import numpy as np
from utils import regularize
from utils import (regularize,
dynamic_loss_plot_init,
dynamic_loss_plot_update,
dynamic_loss_plot_finish)
import types
LOADER = ['', '', '', '', '', '', '', '']
class Encoder:
def __init__(self,
@@ -73,6 +78,44 @@ class Autoencoder:
error = v - reconstructed
return np.sum(np.abs(error))
def train_dataset(self,
data_set: list[np.ndarray],
max_epoch: int,
patience: int,
display_loss: bool = False) -> list[float]:
if display_loss is True:
ax, line = dynamic_loss_plot_init()
losses = []
epoch = 0
no_improv = 0
prev_error = float('inf')
while True:
print(
f"{LOADER[epoch % len(LOADER)]} Training \t({epoch=} error={prev_error:.2f})", # noqa
end="\r"
)
error = 0
for x in data_set:
input = x.flatten()
error += self.train(input)
error /= len(data_set)
if error - prev_error <= 1e-8:
no_improv += 1
else:
no_improv = 0
prev_error = float(error)
losses.append(error)
if display_loss is True:
dynamic_loss_plot_update(ax, line, losses)
if no_improv > patience:
break
if epoch > max_epoch:
break
epoch += 1
if display_loss is True:
dynamic_loss_plot_finish(ax, line)
return losses
def encode(self, v: np.ndarray) -> np.ndarray:
return self.encoder.forward(v)