You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by da...@apache.org on 2022/09/30 17:20:04 UTC

[beam] branch master updated: replaced tabs with spaces in readme file (#23446)

This is an automated email from the ASF dual-hosted git repository.

damccorm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new de661fcb1a0 replaced tabs with spaces in readme file (#23446)
de661fcb1a0 is described below

commit de661fcb1a0aea8d85410238c1920ffe6a094538
Author: Ryan Thompson <ry...@gmail.com>
AuthorDate: Fri Sep 30 13:19:54 2022 -0400

    replaced tabs with spaces in readme file (#23446)
---
 sdks/python/apache_beam/examples/inference/README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sdks/python/apache_beam/examples/inference/README.md b/sdks/python/apache_beam/examples/inference/README.md
index 89e78d22516..4e36c1b346d 100644
--- a/sdks/python/apache_beam/examples/inference/README.md
+++ b/sdks/python/apache_beam/examples/inference/README.md
@@ -218,9 +218,9 @@ python -m apache_beam.examples.inference.tensorrt_object_detection \
 ```
 This writes the output to the `predictions.csv` with contents like:
 ```
-/absolute/path/to/000000000139.jpg;[{'ymin': '217.31875205039978'	 'xmin': '295.93122482299805'	 'ymax': '315.90323209762573'	 'xmax': '357.8959655761719'	 'score': '0.72342616'	 'class': 'chair'}	 {'ymin': '166.81788557767868'.....
+/absolute/path/to/000000000139.jpg;[{'ymin': '217.31875205039978' 'xmin': '295.93122482299805' 'ymax': '315.90323209762573' 'xmax': '357.8959655761719' 'score': '0.72342616' 'class': 'chair'}  {'ymin': '166.81788557767868'.....
 
-/absolute/path/to/000000289594.jpg;[{'ymin': '227.25109100341797'	 'xmin': '331.7402381300926'	 'ymax': '476.88533782958984'	 'xmax': '402.2928895354271'	 'score': '0.77217317'	 'class': 'person'}	 {'ymin': '231.8712615966797'	 'xmin': '292.8590789437294'.....
+/absolute/path/to/000000289594.jpg;[{'ymin': '227.25109100341797' 'xmin': '331.7402381300926'  'ymax': '476.88533782958984' 'xmax': '402.2928895354271' 'score': '0.77217317' 'class': 'person'} {'ymin': '231.8712615966797' 'xmin': '292.8590789437294'.....
 ...
 ```
 Each line has data separated by a semicolon ";". The first item is the file name. The second item is a list of dictionaries, where each dictionary corresponds with a single detection. A detection contains: box coordinates (ymin, xmin, ymax, xmax); score; and class.