This is an automated email from the ASF dual-hosted git repository.
vterentev pushed a commit to branch oss-image-classification
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/oss-image-classification by
this push:
new 4fcdaaedb3f Fix input argument
4fcdaaedb3f is described below
commit 4fcdaaedb3fcaf37b4b7df8fc2f5057c4dcce986
Author: Vitaly Terentyev <[email protected]>
AuthorDate: Thu Nov 6 23:43:33 2025 +0400
Fix input argument
---
sdks/python/apache_beam/examples/inference/pytorch_imagenet_rightfit.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/sdks/python/apache_beam/examples/inference/pytorch_imagenet_rightfit.py
b/sdks/python/apache_beam/examples/inference/pytorch_imagenet_rightfit.py
index 0d59404033e..7c3fb7f6884 100644
--- a/sdks/python/apache_beam/examples/inference/pytorch_imagenet_rightfit.py
+++ b/sdks/python/apache_beam/examples/inference/pytorch_imagenet_rightfit.py
@@ -195,7 +195,7 @@ def parse_known_args(argv):
parser.add_argument('--output_table', required=True, help='BigQuery output
table: dataset.table')
parser.add_argument('--publish_to_big_query', default='true',
choices=['true', 'false'])
parser.add_argument('--input_mode', default='gcs_uris', choices=['gcs_uris',
'bytes'])
- parser.add_argument('--input_file', required=True, help='GCS path to file
with URIs (for load) OR unused for bytes')
+ parser.add_argument('--input', required=True, help='GCS path to file with
URIs (for load) OR unused for bytes')
parser.add_argument('--pubsub_topic',
default='projects/apache-beam-testing/topics/images_topic')
parser.add_argument('--pubsub_subscription',
default='projects/apache-beam-testing/subscriptions/images_subscription')
parser.add_argument('--rate_limit', type=float, default=None, help='Elements
per second for load pipeline')