@funkyfuture sorry to tag you directly here
but i'm stuck in this from a long.
Split type dependency on cut off date
When split_type is "custom" then "cutoff_date" is required.
data_splitting:
type: dict
required: true
schema:
split_type:
type: string
allowed:
- train_test
- k_fold
- custom
required: true
cutoff_date:
type: string
regex: "\\d{4}-\\d{2}-\\d{2}"
required: false
dependencies:
split_type:
- "custom"
Im getting below error
{'data_splitting': [{'cutoff_date': ["depends on these values: {'split_type': ['custom']}"]}]}