You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After you upload your training and validation files, you're ready to start the fine-tuning job.
@@ -205,7 +167,6 @@ print("Job ID:", response.id)
205
167
print("Status:", response.id)
206
168
print(response.model_dump_json(indent=2))
207
169
```
208
-
---
209
170
210
171
You can also pass additional optional parameters like hyperparameters to take greater control of the fine-tuning process. For initial training we recommend using the automatic defaults that are present without specifying these parameters.
211
172
@@ -226,7 +187,7 @@ from openai import AzureOpenAI
api_version="2024-02-01"# This API version or later is required
190
+
api_version="2024-10-21"# This API version or later is required
230
191
)
231
192
232
193
client.fine_tuning.jobs.create(
@@ -265,7 +226,7 @@ When each training epoch completes a checkpoint is generated. A checkpoint is a
265
226
You can run the list checkpoints command to retrieve the list of checkpoints associated with an individual fine-tuning job. You might need to upgrade your OpenAI client library to the latest version with `pip install openai --upgrade` to run this command.
0 commit comments