- Moved src/tests/ → tests/ - Added test_* functions with assertions to script-style test files - Added main() to each so IDEs offer it as a separate run target from pytest - Fixed cupy_test.py: remove spurious x_gpu += x_cpu, fix duplicate xlabel Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
62 lines
1.6 KiB
Python
62 lines
1.6 KiB
Python
import os
|
|
import matplotlib.pyplot as plt
|
|
|
|
from model.model import Model
|
|
from rbm.entity import Entity, EntityParams, TrainingParams
|
|
from rbm.matrix import Mat, np, read_armadillo
|
|
|
|
class TestModel(Model):
|
|
def __init__(self, name: str, work_dir: str = '.'):
|
|
super().__init__(name, work_dir)
|
|
self.unit1 = Entity((96*96, 333), EntityParams(do_gaussian_visible=True, do_gaussian_hidden=False), TrainingParams(learning_rate=0.001, momentum=0.9, num_epochs=1000), enable_training=False)
|
|
self.unit2 = Entity((333, 256), EntityParams(), TrainingParams(learning_rate=0.1, momentum=0.9, num_epochs=10000, do_rao_blackwell=True))
|
|
|
|
def forward(self, x: Mat):
|
|
x = self.unit1.forward(x)
|
|
x = self.unit2.forward(x)
|
|
return x
|
|
|
|
def backward(self, x: Mat):
|
|
x = self.unit2.reconstruct(x)
|
|
x = self.unit1.reconstruct(x)
|
|
return x
|
|
|
|
if __name__ == "__main__":
|
|
work_dir = "results"
|
|
prj_name = "deep_norb_small_16h_v2"
|
|
prj_root = "/home/jens/work/repos/Rbm"
|
|
|
|
# Create model
|
|
model = TestModel(prj_name, "results")
|
|
|
|
# Init state
|
|
model.init(0.1)
|
|
|
|
# load state
|
|
model.load()
|
|
|
|
# Load train data
|
|
train_batch = read_armadillo(os.path.join(prj_root, f"norb_small_16h_v2.training.dat"))
|
|
|
|
# Load test data
|
|
test_batch = read_armadillo(os.path.join(prj_root, f"norb_small_16h_v2.test.dat"))
|
|
|
|
# Train
|
|
model.train(train_batch)
|
|
|
|
# save state
|
|
model.save()
|
|
|
|
fig, axes = plt.subplots(1, len(test_batch), figsize=(12, 3))
|
|
for index, inp in enumerate(test_batch):
|
|
out_normalized = model.backward(model.forward(inp))
|
|
img = 2*(out_normalized + 0.5)
|
|
img = np.reshape(img, (96, 96))
|
|
axes[index].imshow(np.asnumpy(img))
|
|
axes[index].axis('off')
|
|
|
|
plt.show()
|
|
|
|
|
|
|