UNPKG

@astermind/astermind-synthetic-data

Version:

OmegaSynth - Label-Conditioned Synthetic Data Generator for AsterMind ELM/KELM Pipelines

24 lines (23 loc) 801 B
/** * Evaluate OmegaSynth Generated Data Quality * * This script: * 1. Loads OmegaSynth model * 2. Generates 200 examples per label type * 3. Saves generated examples to JSON * 4. Evaluates examples for: * - Quality: format validation, length checks, character validation * - Realism: comparison with training data patterns * - Uniqueness: duplicate detection, diversity metrics * * This example shows how customers would use the installed @astermind/astermind-synth package. * After installing: npm install @astermind/astermind-synth * * Note: TypeScript may show errors here during development, but these imports * will work correctly when customers install the package. */ /** * Main function */ declare function main(): Promise<void>; export { main as runEvaluation };