UNPKG

clustering-tfjs

Version:

High-performance TypeScript clustering algorithms (K-Means, Spectral, Agglomerative) with TensorFlow.js acceleration and scikit-learn compatibility

12 lines 465 B
import { BenchmarkResult } from './index'; export interface BackendComparison { backend: string; algorithm: string; datasetSize: string; speedupVsCPU: number; memoryRatio: number; recommendation: string; } export declare function analyzeBackendPerformance(results: BenchmarkResult[]): BackendComparison[]; export declare function generateBackendRecommendations(comparisons: BackendComparison[]): string; //# sourceMappingURL=compare.d.ts.map