Type alias LoraTune_Output

LoraTune_Output: {
    base_checkpoint: LoraTuneCheckpoint;
    files: LoraTuneFile[];
    seed?: number | null;
    steps: number;
    trigger_words: string[];
    tune_type?: any;
}

A LoRA Tune.

Type declaration

  • base_checkpoint: LoraTuneCheckpoint

    The base checkpoint used for this LoRA Tune.

  • files: LoraTuneFile[]

    The files used for this LoRA Tune.

  • Optional seed?: number | null

    The seed used for this LoRA Tune.

  • steps: number

    The number of steps used for this LoRA Tune.

  • trigger_words: string[]

    The trigger words used for this tune. As of now, only one trigger word is supported. List is used for future-proofing.

  • Optional tune_type?: any

    Tune type.

Generated using TypeDoc