Explorar el Código

fix README_en.md

Tingquan Gao hace 1 año
padre
commit
70c4cc829e
Se han modificado 1 ficheros con 4 adiciones y 6 borrados
  1. 4 6
      README_en.md

+ 4 - 6
README_en.md

@@ -433,12 +433,10 @@ from paddlex import create_pipeline
 
 pipeline = create_pipeline(pipeline=[Pipeline Name])
 output = pipeline.predict([Input Image Name])
-for batch in output:
-    for item in batch:
-        res = item['result']
-        res.print()
-        res.save_to_img("./output/")
-        res.save_to_json("./output/")
+for res in output:
+    res.print()
+    res.save_to_img("./output/")
+    res.save_to_json("./output/")
 ```
 The following steps are executed: