fix: unneeded func params
This commit is contained in:
@@ -64,7 +64,7 @@ class AAutoencoder(ABC):
|
|||||||
break
|
break
|
||||||
epoch += 1
|
epoch += 1
|
||||||
if display_loss is True:
|
if display_loss is True:
|
||||||
dynamic_loss_plot_finish(ax, line)
|
dynamic_loss_plot_finish()
|
||||||
return losses
|
return losses
|
||||||
|
|
||||||
def save(self, path: str):
|
def save(self, path: str):
|
||||||
|
|||||||
@@ -41,6 +41,6 @@ def dynamic_loss_plot_update(ax, line, loss):
|
|||||||
plt.pause(0.1)
|
plt.pause(0.1)
|
||||||
|
|
||||||
|
|
||||||
def dynamic_loss_plot_finish(ax, line):
|
def dynamic_loss_plot_finish():
|
||||||
plt.ioff()
|
plt.ioff()
|
||||||
plt.show()
|
plt.show()
|
||||||
|
|||||||
Reference in New Issue
Block a user