我正在研究我的管道并在 jupyter notebook 上手动测试它。
这是我的情况。
我想从中吸取教训example_train
,example_valid
所以我这样写。
context.pipeline.to_outputs("example_train", "example_valid")
并将另一个管道传递给 SequencialRunner,我得到了它们。
我也想要total_steps
,所以我像这样改变了这条线。
context.pipeline.to_outputs("example_train", "example_valid", "total_steps")
但是,结果不包含exampe_train
. 是的,我知道example_train
不是这个修改管道的输出,所以它不包含。
有没有办法像这种情况一样获取中间数据集?