Francisco Piedrahita Velez
01/18/2025, 6:09 PMruntime_params
. I have the following parameters.yml
file:
model:
name: "${runtime_params:model_name}"
identifier: "${runtime_params:model_identifier}"
When running the pipeline I'm using the following CLI command:
kedro run --params model_name=llama,model_identifier=meta-llama/Llama-3.1-8
But I'm getting the following error:
InterpolationResolutionError: Runtime parameter 'model_name' not found and no default value provided.
I've been trying to solve this without any luck. I would greatly appreciate any insights into this issue.
Thanks!Hall
01/18/2025, 6:09 PMHuong Nguyen
01/20/2025, 1:23 PMkedro run --params="key1=value with spaces,key2=value"
let me know if this resolves the issue?Francisco Piedrahita Velez
01/20/2025, 3:34 PMHuong Nguyen
01/20/2025, 4:01 PMkedro run --params model_name=llama
? or kedro run --params model_identifier=meta-llama/Llama-3.1-8
?Francisco Piedrahita Velez
01/20/2025, 4:07 PMkedro run --params model_name=llama
or kedro run --params model_identifier=meta-llama/Llama-3.1-8
I get:
InterpolationResolutionError: Runtime parameter 'model_name' not found and no
default value provided.
Huong Nguyen
01/20/2025, 4:20 PMFrancisco Piedrahita Velez
01/20/2025, 4:29 PMHuong Nguyen
01/21/2025, 6:57 AMFrancisco Piedrahita Velez
01/21/2025, 12:30 PMHuong Nguyen
01/21/2025, 3:41 PMFrancisco Piedrahita Velez
01/22/2025, 1:04 PM