UNPKG

@astermind/astermind-synth

Version:

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

21 lines (20 loc) 658 B
/** * Test app: Load OmegaSynth model and use it to train AsterMind ELM * * This demonstrates: * 1. Loading a saved OmegaSynth model * 2. Generating synthetic training data * 3. Training an AsterMind ELM on the synthetic data * 4. Testing the ELM * * 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 runELMTraining };