Remove the datset arg from all remaining examples of model.inspect() in the example code

This commit is contained in:
allevitan
2026-06-16 14:24:18 +02:00
parent 8ced842a58
commit 45949534f8
4 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -20,6 +20,6 @@ for loss in model.Adam_optimize(10, dataset):
model.inspect()
print(model.report())
model.inspect(dataset)
model.inspect()
model.compare(dataset)
plt.show()