dataeval.scope.Prioritize.Config¶
- class dataeval.scope.Prioritize.Config¶
Configuration for Prioritize evaluator.
- extractor¶
Feature extractor instance to use for extracting embeddings from data.
- Type:¶
FeatureExtractor or None
- batch_size¶
Batch size for embedding computation. When None, uses the global batch size from
get_batch_size().- Type:¶
int or None, default None
- method¶
Ranking method to use.
- Type:¶
{“knn”, “kmeans_distance”, “kmeans_complexity”, “hdbscan_distance”, “hdbscan_complexity”}, default “knn”
- n_init¶
Number of K-means initializations (kmeans methods only).
- Type:¶
int or “auto”, default “auto”