For the past hour. I have tried to fine tune jobs. However, the job seems to ignore the hyper parameters provided.
I have set my hyper parameter to
epoch - 3
batch size - 1
But when the job get loaded, I noticed it was all set to Auto and finally choose another value.
Anyone notice this?
_j
November 27, 2024, 9:09am
2
On the API, the hyperparameters need to be in their own mapping object, not as root parameters to the API request. The name of the most important is “n_epochs”.
hyperparameters={
"n_epochs":2,
"learning_rate_multiplier":0.7
},
model=...
I am using the web interface. Here I specified Epoch and Batch Size when I create.
But the hyper parameters shows as Auto after I click the create button.
The batch size is different from what I specified after a short while.
1 Like