AutoClustering adds a column to your original data with a cluster number identifier
AutoClustering(
data,
FeatureColumns = NULL,
ModelID = "TestModel",
SavePath = NULL,
NThreads = 8,
MaxMemory = "28G",
MaxClusters = 50,
ClusterMetric = "totss",
Epochs = 5L,
L2_Reg = 0.1,
ElasticAveraging = TRUE,
ElasticAveragingMovingRate = 0.9,
ElasticAveragingRegularization = 0.001
)
is the source time series data.table
Independent variables
For naming the files to save
Directory path for saving models
set based on number of threads your machine has available
set based on the amount of memory your machine has available
number of factors to test out in k-means to find the optimal number
pick the metric to identify top model in grid tune c("totss","betweenss","withinss")
For the autoencoder
For the autoencoder
For the autoencoder
For the autoencoder
For the autoencoder
Original data.table with added column with cluster number identifier
Other Unsupervised Learning:
GenTSAnomVars()
,
H2OIsolationForestScoring()
,
H2OIsolationForest()
,
ResidualOutliers()