From 71f61fc5fc915da3941cf5ed5d9cc90fccc49031 Mon Sep 17 00:00:00 2001 From: Matthias Bisping Date: Fri, 22 Apr 2022 17:16:25 +0200 Subject: [PATCH] comment changed --- image_prediction/pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image_prediction/pipeline.py b/image_prediction/pipeline.py index c14b08b..fed0c89 100644 --- a/image_prediction/pipeline.py +++ b/image_prediction/pipeline.py @@ -48,7 +48,7 @@ class Pipeline: extract, # ... image-metadata-pairs as a stream split, # ... into an image stream and a metadata stream pairwise_apply(classify, identity), # ... apply functions to the streams pairwise - join, # ... the streams + join, # ... the streams by zipping reformat, # ... the items )