我正在查看iris
kedro 提供的项目示例。除了记录准确性之外,我还想将predictions
and保存test_y
为 csv。
这是kedro提供的示例节点。
def report_accuracy(predictions: np.ndarray, test_y: pd.DataFrame) -> None:
"""Node for reporting the accuracy of the predictions performed by the
previous node. Notice that this function has no outputs, except logging.
"""
# Get true class index
target = np.argmax(test_y.to_numpy(), axis=1)
# Calculate accuracy of predictions
accuracy = np.sum(predictions == target) / target.shape[0]
# Log the accuracy of the model
log = logging.getLogger(__name__)
log.info("Model accuracy on test set: %0.2f%%", accuracy * 100)
我添加了以下内容来保存数据。
data = pd.DataFrame({"target": target , "prediction": predictions})
data_set = CSVDataSet(filepath="data/test.csv")
data_set.save(data)
这按预期工作,但是,我的问题是“这是 kedro 做事的方式”吗?我可以提供data_set
incatalog.yml
和稍后保存data
吗?如果我想这样做,我如何data_set
从catalog.yml
节点内部访问。
有没有一种方法可以保存数据而无需在这样的节点内创建目录data_set = CSVDataSet(filepath="data/test.csv")
?如果可能的话,我想要这个catalog.yml
,如果它遵循 kedro 约定!