🏠 Home
Prestatietests
📊 Alle benchmarks 🦖 Dinosaur v1 🦖 Dinosaur v2 ✅ To-Do List applicaties 🎨 Creatieve vrije pagina's 🎯 FSACB - Ultieme showcase 🌍 Vertaalbenchmark
Modellen
🏆 Top 10 modellen 🆓 Gratis modellen 📋 Alle modellen ⚙️ Kilo Code
Bronnen
💬 Promptbibliotheek 📖 AI-woordenlijst 🔗 Nuttige links

AI-woordenlijst

Het complete woordenboek van kunstmatige intelligentie

162
categorieën
2.032
subcategorieën
23.060
termen
📖
termen

DBSCAN

Density-based clustering algorithm that groups sufficiently close points while marking isolated points in low-density regions as outliers.

📖
termen

Epsilon (ε)

Parameter defining the neighborhood radius around a point to determine if it belongs to a cluster, directly influencing clustering granularity.

📖
termen

MinPts

Threshold parameter defining the minimum number of points required in the ε-neighborhood for a point to be considered a core point.

📖
termen

Core Point

Central point of a cluster having at least MinPts points in its ε-neighborhood, serving as an anchor point to form dense clusters.

📖
termen

Border Point

Point located at the periphery of a cluster, not having enough neighbors to be a core point but being reachable from a core point.

📖
termen

Noise Point

Point not belonging to any cluster as it is neither a core point nor reachable from a core point, often considered an anomaly.

📖
termen

ε-Neighborhood

Set of points located at a distance less than or equal to ε from a given point, forming the basis of density calculation in DBSCAN.

📖
termen

Directly Density-Reachable

Relation where a point q is directly reachable from a core point p if q is in the ε-neighborhood of p.

📖
termen

Density-reachable

Transitive relation where a point is reachable from a core point through a chain of density-directly reachable points.

📖
termen

Density-connected

Symmetric relation where two points are connected if there exists a common core point from which they are both density-reachable.

📖
termen

OPTICS

Algorithm extending DBSCAN that produces a density-based clustering order, allowing extraction of clusters with varying densities.

📖
termen

HDBSCAN

Hierarchical variant of DBSCAN that builds a hierarchy of clusters with varying densities and automatically selects stable clusters.

📖
termen

R-tree index

Spatial indexing data structure optimizing neighbor search within ε radius, significantly accelerating DBSCAN on large datasets.

📖
termen

Curse of Dimensionality

Phenomenon where distance measure loses its meaning in high-dimensional spaces, affecting the performance of density-based algorithms.

📖
termen

Silhouette Score

Evaluation metric measuring intra-cluster cohesion and inter-cluster separation, used to optimize ε and MinPts parameters.

📖
termen

Arbitrary-shaped clusters

Major advantage of DBSCAN allowing detection of non-convex and complex-shaped clusters, unlike algorithms like K-means.

📖
termen

Anomaly Detection

Natural application of DBSCAN where points identified as noise correspond to anomalies or outliers in the data.

📖
termen

Spatial Partitioning

Process of dividing the data space into regions based on density, the foundation of how DBSCAN and similar algorithms work.

📖
termen

Neighborhood Graph

Graphical representation where nodes are points and edges connect points in the ε-neighborhood, used to visualize density structure.

📖
termen

Reachability Distance

Modified distance used in OPTICS and HDBSCAN that takes into account local density to order points based on their accessibility.

📖
termen

Core Distance

Minimum distance required for a point to become a core point, calculated as the distance to the MinPts-th nearest neighbor.

🔍

Geen resultaten gevonden