Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update inference.md #12296

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/en/user_guides/inference.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ Input can be either of these types:
- list: A list of basic types above. Each element in the list will be processed separately.

```python
inferencer(['img_1.jpg', 'img_2.jpg])
inferencer(['img_1.jpg', 'img_2.jpg'])
# You can even mix the types
inferencer(['img_1.jpg', array])
```
Expand Down Expand Up @@ -186,7 +186,7 @@ Here are extensive lists of parameters that you can use.

- **DetInferencer.\_\_init\_\_():**

| Arguments | Type | Type | Description |
| Arguments | Type | Default | Description |
| --------------- | ------------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `model` | str, optional | None | Path to the config file or the model name defined in metafile. For example, it could be 'rtmdet-s' or 'rtmdet_s_8xb32-300e_coco' or 'configs/rtmdet/rtmdet_s_8xb32-300e_coco.py'. If the model is not specified, the user must provide the `weights` saved by MMEngine which contains the config string. |
| `weights` | str, optional | None | Path to the checkpoint. If it is not specified and `model` is a model name of metafile, the weights will be loaded from metafile. |
Expand Down Expand Up @@ -252,7 +252,7 @@ python demo/webcam_demo.py \
${CONFIG_FILE} \
${CHECKPOINT_FILE} \
[--device ${GPU_ID}] \
[--camera-id ${CAMERA-ID}] \
[--camera-id ${CAMERA_ID}] \
[--score-thr ${SCORE_THR}]
```

Expand Down Expand Up @@ -319,7 +319,7 @@ python demo/video_gpuaccel_demo.py demo/demo.mp4 \

This is a script for slicing inference on large images.

```
```shell
python demo/large_image_demo.py \
${IMG_PATH} \
${CONFIG_FILE} \
Expand Down