 |
hyperparameter grids specifies multiple values for each hyperparameter of the DBSCAN model.
 |
max distance specifies the maximum distance between two samples for them to share the same neighborhood.
|
 |
min samples specifies the minimum number of samples in a neighborhood for a point to be a core point.
|
 |
p specifies the power of the Minkowski metric that this VI uses to calculate distances between points.
The following equation defines the Minkowski metric:
where [x1, x2, …, xN] is the input feature vector and [core sample1, core sample2, …, core sampleN] is the core sample feature vector.
|
|
 |
hyperparameter optimization specifies the method of optimization to determine the optimal hyperparameter settings.
 |
hyperparameter search method specifies the method to search for the optimal set of hyperparameters.
0 | Exhaustive search (default)—Tests all possible hyperparameter combinations in the training process. This method is reliable but time-consuming. | 1 | Random search—Tests a random subset of the hyperparameter combinations in the training process. This method is faster. |
|
 |
number of searchings specifies the number of hyperparameter combinations that this VI selects to train the model. The default is 1. This input is valid only if hyperparameter search method is Random search.
|
|
 |
evaluation metric specifies the criterion to evaluate the trained clustering model.
0 | Davies Bouldin Index—Evaluates the clustering model using the Davies Bouldin Index metric. The lower the value of metric, the better the compactness and separation of the clustering model. | 1 | Dunn Index (default)—Evaluates the clustering model using the Dunn Index metric. The higher the value of metric, the better
the compactness and separation of the clustering model. | 2 | Jaccard Index—Evaluates the clustering model using the Jaccard Index metric. The lower the value of metric, the better the
separation of the clustering model. | 3 | Rand Index—Evaluates the clustering model using the Rand Index metric. The lower the value of metric, the better the separation of the clustering model. |
|
 |
error in describes error conditions that occur before this node runs. This input provides standard error in functionality.
|
 |
untrained DBSCAN model returns the initialized DBSCAN model for training.
|
 |
error out contains error information. This output provides standard error out functionality.
|