Then in this scenario, the dataset that I am using...
# beginners-need-help
a
Then in this scenario, the dataset that I am using a custom versioned dataset and for the very first run of node
Copy code
stitch_train_candidates = node(
        func=stitch_training_cand,
        inputs=["training_candidates_hist", "stitched_hist"],
        outputs="stitch_train_candidates",
        name="stitch_train_candidates_node")
stitched_hist isn't available and I am getting this error
Copy code
raise VersionNotFoundError(f"Did not find any versions for {self}")
kedro.io.core.VersionNotFoundError: Did not find any versions for HistogramDataSet(filepath=/Users/Project/data/08_reporting/stitch_train_candidates.json, protocol=file, version=Version(load=None, save='2022-04-21T12.17.11.537Z'))
How can i fix that?
2 Views