FineTuning With multiple targets #378
francoisabcd
started this conversation in
General
Replies: 1 comment 1 reply
-
|
@francoisabcd Could you please provide a working example to reproduce the issue? What do you mean by "not working"? Also, you can use backticks to format your code correctly. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I was trying to finetune with multiple targets as showing below:
train_inputs.append(
{
"target": {col: df_loop[col].values for col in list_cols_target},
"past_covariates": {
col: df_loop[col].values for col in list_past_covariates
},
}
)
# Fine-tune the model
finetuned_pipeline_2 = pipeline.fit(
inputs=train_inputs,
prediction_length=prediction_length,
num_steps=num_steps,
learning_rate=learning_rate,
batch_size=32,
logging_steps=10,
)
Beta Was this translation helpful? Give feedback.
All reactions