@astermind/astermind-synthetic-data
Version:
OmegaSynth - Label-Conditioned Synthetic Data Generator for AsterMind ELM/KELM Pipelines
31 lines (30 loc) • 964 B
TypeScript
/**
* Quickstart example for OmegaSynth
* Demonstrates how to use the pretrained model
*
* 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.
*/
/**
* Example 1: Using pretrained model in retrieval mode
*/
export declare function examplePretrainedRetrieval(): Promise<void>;
/**
* Example 2: Using pretrained model in hybrid mode
*/
export declare function examplePretrainedHybrid(): Promise<void>;
/**
* Example 3: Training custom model
*/
export declare function exampleCustomTraining(): Promise<void>;
/**
* Example 4: Deterministic generation with seed
*/
export declare function exampleDeterministic(): Promise<void>;
/**
* Run all examples
*/
export declare function runAllExamples(): Promise<void>;