We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 145f097 + 2d39bdc commit ee63828Copy full SHA for ee63828
articles/cognitive-services/openai/includes/fine-tuning-rest.md
@@ -196,8 +196,7 @@ fine_tune_headers = {'api-key': api_key}
196
fine_tune_data = "{ \"model\": \"curie\", " + \
197
"\"training_file\": \"" + training_id + "\", " + \
198
"\"validation_file\": \"" + validation_id + "\", " + \
199
- "\"hyperparams\": " + \
200
- "{ \"batch_size\": 1, \"learning_rate_multiplier\": 0.1, \"n_epochs\": 4 } }"
+ "\"batch_size\": 1, \"learning_rate_multiplier\": 0.1, \"n_epochs\": 4 }"
201
202
# Start the fine-tune job using the REST API
203
r = requests.post(api_base + 'openai/fine-tunes',
0 commit comments