In the requirements.txt file, It is instructed to use snowflake-ml-python>=1.9.0,
requirements.txt
|
snowflake-ml-python>=1.9.0 |
but here
|
packages=["snowflake-snowpark-python", "snowflake-ml-python<1.9.0", "xgboost"], # NOTE: Temporarily pinning to <1.9.0 due to compatibility issues |
it is using snowflake-ml-python<1.9.0
By using this setting, getting the following error
cleanup_task = DAGTask("cleanup_task", definition=cleanup, is_finalizer=True)
TypeError: __init__() got an unexpected keyword argument 'is_finalizer'
In the requirements.txt file, It is instructed to use snowflake-ml-python>=1.9.0,
requirements.txt
sf-samples/samples/ml/ml_jobs/e2e_task_graph/requirements.txt
Line 1 in 68c5507
but here
sf-samples/samples/ml/ml_jobs/e2e_task_graph/src/pipeline_dag.py
Line 344 in 68c5507
By using this setting, getting the following error