diff --git a/docs/en/modes/predict.md b/docs/en/modes/predict.md index 5d0db0b60..ee43c9e93 100644 --- a/docs/en/modes/predict.md +++ b/docs/en/modes/predict.md @@ -113,8 +113,8 @@ YOLOv8 can process different types of input sources for inference, as shown in t | OpenCV | `cv2.imread('im.jpg')` | `np.ndarray` | HWC format with BGR channels `uint8 (0-255)`. | | numpy | `np.zeros((640,1280,3))` | `np.ndarray` | HWC format with BGR channels `uint8 (0-255)`. | | torch | `torch.zeros(16,3,320,640)` | `torch.Tensor` | BCHW format with RGB channels `float32 (0.0-1.0)`. | -| CSV | `'sources.csv'` | `str` or `Path` | CSV file containing paths to images, videos, or directories. -| TXT | `'sources.txt'` | `str` or `Path` | TXT file containing paths to images, videos, or directories. | +| CSV | `'sources.csv'` | `str` or `Path` | CSV file containing paths to images, videos, or directories. | +| TXT | `'sources.txt'` | `str` or `Path` | TXT file containing paths to images, videos, or directories. | | video ✅ | `'video.mp4'` | `str` or `Path` | Video file in formats like MP4, AVI, etc. | | directory ✅ | `'path/'` | `str` or `Path` | Path to a directory containing images or videos. | | glob ✅ | `'path/*.jpg'` | `str` | Glob pattern to match multiple files. Use the `*` character as a wildcard. | @@ -260,8 +260,7 @@ Below are code examples for using each source type: # Run inference on the source results = model(source) # list of Results objects - - === "TXT" + "TXT" Run inference on a collection of images, videos and directories listed in a TXT file. ```python