You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: patched_yolo_infer/README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ This library facilitates various visualizations of inference results from ultral
9
9
You can install the library via pip:
10
10
11
11
```bash
12
-
pip install patched_yolo_infer
12
+
pip install patched-yolo-infer
13
13
```
14
14
15
15
Note: If CUDA support is available, it's recommended to pre-install PyTorch with CUDA support before installing the library. Otherwise, the CPU version will be installed by default.
@@ -99,6 +99,7 @@ Class implementing cropping and passing crops through a neural network for detec
99
99
-**resize_initial_size** (*bool*): Whether to resize the results to the original image size (ps: slow operation).
100
100
-**memory_optimize** (*bool*): Memory optimization option for segmentation (less accurate results when enabled).
101
101
-**inference_extra_args** (*dict*): Dictionary with extra ultralytics [inference parameters](https://docs.ultralytics.com/modes/predict/#inference-arguments) (possible keys: half, device, max_det, augment, agnostic_nms and retina_masks)
102
+
-**batch_inference** (*bool*): Batch inference of image crops through a neural network instead of sequential passes of crops (ps: faster inference, higher gpu memory use)
102
103
103
104
**CombineDetections**
104
105
Class implementing combining masks/boxes from multiple crops + NMS (Non-Maximum Suppression).\
0 commit comments