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

x/openai/resources/fine-tuning/mod.ts>FineTuningJobWandbIntegration

Deno build of the official Typescript library for the OpenAI API.
Extremely Popular
Go to Latest
interface FineTuningJobWandbIntegration
import { type FineTuningJobWandbIntegration } from "https://deno.land/x/openai@v4.38.5/resources/fine-tuning/mod.ts";

The settings for your integration with Weights and Biases. This payload specifies the project that metrics will be sent to. Optionally, you can set an explicit display name for your run, add tags to your run, and set a default entity (team, username, etc) to be associated with your run.

Properties

project: string

The name of the project that the new run will be created under.

optional
entity: string | null

The entity to use for the run. This allows you to set the team or username of the WandB user that you would like associated with the run. If not set, the default entity for the registered WandB API key is used.

optional
name: string | null

A display name to set for the run. If not set, we will use the Job ID as the name.

optional
tags: Array<string>

A list of tags to be attached to the newly created run. These tags are passed through directly to WandB. Some default tags are generated by OpenAI: "openai/finetune", "openai/{base-model}", "openai/{ftjob-abcdef}".