data,
metrics=["ReconstructionError",
"EnergyDistance"])
print("Final performance metrics:")
performance.check_progress(rbm, 0, show=True)
metdict = {m.name: m.value() for m in performance.metrics}
After Change
data,
metrics=[
"ReconstructionError"])
untrained_performance = perf.check_progress(rbm, 0)
// set up the optimizer and the fit method
opt = optimizers.RMSProp(rbm,