Loading...

vastorbit.machine_learning.vast.cluster.DBSCAN.drop

DBSCAN.drop() bool

Drops the model from the VAST DataBase.

Examples

Let’s start by importing a model:

from vastorbit.machine_learning.vast import DBSCAN

Then we can initialize the model:

model = DBSCAN(
    eps = 0.5,
    min_samples = 2,
    p = 2,
)

Once the model is initialized we can easily drop it:

model.drop()

Note

If it returns False, then it means that there was no model in the first place.

Note

Refer to DBSCAN for more information about the different methods and usages.