From 7d2af9c0aee32abd6906a013bec62f7c8cf47e3d Mon Sep 17 00:00:00 2001 From: Jensun Ravichandran Date: Sun, 9 May 2021 20:54:40 +0200 Subject: [PATCH] Update LiRaMLVQ example script --- examples/liramlvq_tecator.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/examples/liramlvq_tecator.py b/examples/liramlvq_tecator.py index b7cc21a..53219ab 100644 --- a/examples/liramlvq_tecator.py +++ b/examples/liramlvq_tecator.py @@ -29,15 +29,9 @@ if __name__ == "__main__": # Initialize the model model = pt.models.GMLVQ(hparams) - # Model summary - print(model) - # Callbacks vis = pt.models.VisSiameseGLVQ2D(train_ds, border=0.1) - # Namespace hook for the visualization to work - model.backbone = model.omega_layer - # Setup trainer trainer = pl.Trainer(max_epochs=200, callbacks=[vis])