Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/openai_mini/lib/types/types.ts>FineTune

A minimal wrapper for the OpenAI API
Go to Latest
interface FineTune
import { type FineTune } from "https://deno.land/x/openai_mini@0.3.0/lib/types/types.ts";

Properties

object: "fine-tune"
id: string
hyperparams: { n_epochs: number; batch_size: number | null; prompt_loss_weight: number; learning_rate_multiplier: number | null; }
organization_id: string
model: string
training_files: any[]
validation_files: any[]
result_files: any[]
created_at: number
updated_at: number
status:
| "pending"
| "running"
| "completed"
| "failed"
fine_tuned_model: any | null