We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aa69a5 commit 046d10aCopy full SHA for 046d10a
README.md
@@ -90,9 +90,6 @@ AE <- autoencoder(X = X_train,
90
optim.type = 'adam',
91
n.epochs = 5000)
92
93
-# Plot original points (grey) and reconstructions (colored)
94
-reconstruction_plot(AE, X_train)
95
-
96
# Reconstruct test data
97
reconstruct(AE, X_test)
98
@@ -106,6 +103,9 @@ reconstruct(AE, X_test)
106
103
#
107
104
# $anomaly_scores
108
105
# [1] 398.926431 247.238111 11.613522 0.134633 1029.806121
+
+# Plot original points (grey) and reconstructions (colored) for training data
+reconstruction_plot(AE, X_train)
109
```
110
111

0 commit comments