scrimba
AI Engineering
Intro to AI Engineering
Fine-tuning
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
Fine-tuning
Expand for more info
index.js
run
preview
console
import OpenAI from "openai"

const openai = new OpenAI(
{dangerouslyAllowBrowser: true}
)

/* Upload training data */

/* Use file ID to create job */

/* Check status of job */

/* Test our fine-tuned model */

Console
/index.html
-9:50