import React from 'react' import { useFeatureExtraction } from '../../contexts/FeatureExtractionContext' import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select' const FeatureExtractionConfig = () => { const { config, setConfig } = useFeatureExtraction() return (

Feature Extraction Settings

How to aggregate token embeddings into sentence embeddings

L2 normalize embeddings for better similarity calculations

Mean Pooling: Average all token embeddings

CLS Token: Use the [CLS] token embedding (if available)

) } export default FeatureExtractionConfig