classification_base
ClassificationBaseOnnxRoboflowInferenceModel
¶
Bases: OnnxRoboflowInferenceModel
Base class for ONNX models for Roboflow classification inference.
Attributes:
Name | Type | Description |
---|---|---|
multiclass |
bool
|
Whether the classification is multi-class or not. |
Methods:
Name | Description |
---|---|
get_infer_bucket_file_list |
Get the list of required files for inference. |
softmax |
Compute softmax values for a given set of scores. |
infer |
ClassificationInferenceRequest) -> Union[List[Union[ClassificationInferenceResponse, MultiLabelClassificationInferenceResponse]], Union[ClassificationInferenceResponse, MultiLabelClassificationInferenceResponse]]: Perform inference on a given request and return the response. |
draw_predictions |
Draw prediction visuals on an image. |
Source code in inference/core/models/classification_base.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 |
|
__init__(*args, **kwargs)
¶
Initialize the model, setting whether it is multiclass or not.
Source code in inference/core/models/classification_base.py
38 39 40 41 |
|
draw_predictions(inference_request, inference_response)
¶
Draw prediction visuals on an image.
This method overlays the predictions on the input image, including drawing rectangles and text to visualize the predicted classes.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
inference_request
|
The request object containing the image and parameters. |
required | |
inference_response
|
The response object containing the predictions and other details. |
required |
Returns:
Name | Type | Description |
---|---|---|
bytes |
The bytes of the visualized image in JPEG format. |
Source code in inference/core/models/classification_base.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
|
get_infer_bucket_file_list()
¶
Get the list of required files for inference.
Returns:
Name | Type | Description |
---|---|---|
list |
list
|
A list of required files for inference, e.g., ["environment.json"]. |
Source code in inference/core/models/classification_base.py
116 117 118 119 120 121 122 |
|
infer(image, disable_preproc_auto_orient=False, disable_preproc_contrast=False, disable_preproc_grayscale=False, disable_preproc_static_crop=False, return_image_dims=False, **kwargs)
¶
Perform inference on the provided image(s) and return the predictions.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
image
|
Any
|
The image or list of images to be processed. - can be a BGR numpy array, filepath, InferenceRequestImage, PIL Image, byte-string, etc. |
required |
disable_preproc_auto_orient
|
bool
|
If true, the auto orient preprocessing step is disabled for this call. Default is False. |
False
|
disable_preproc_contrast
|
bool
|
If true, the auto contrast preprocessing step is disabled for this call. Default is False. |
False
|
disable_preproc_grayscale
|
bool
|
If true, the grayscale preprocessing step is disabled for this call. Default is False. |
False
|
disable_preproc_static_crop
|
bool
|
If true, the static crop preprocessing step is disabled for this call. Default is False. |
False
|
return_image_dims
|
bool
|
If set to True, the function will also return the dimensions of the image. Defaults to False. |
False
|
**kwargs
|
Additional parameters to customize the inference process. |
{}
|
Returns:
Type | Description |
---|---|
Union[List[np.array], np.array, Tuple[List[np.array], List[Tuple[int, int]]], Tuple[np.array, Tuple[int, int]]]: |
|
If |
|
If |
|
If |
|
If |
Notes
- The input image(s) will be preprocessed (normalized and reshaped) before inference.
- This function uses an ONNX session to perform inference on the input image(s).
Source code in inference/core/models/classification_base.py
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
|
infer_from_request(request)
¶
Handle an inference request to produce an appropriate response.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
request
|
ClassificationInferenceRequest
|
The request object encapsulating the image(s) and relevant parameters. |
required |
Returns:
Type | Description |
---|---|
Union[List[InferenceResponse], InferenceResponse]
|
Union[List[InferenceResponse], InferenceResponse]: The response object(s) containing the predictions, visualization, and other pertinent details. If a list of images was provided, a list of responses is returned. Otherwise, a single response is returned. |
Notes
- Starts a timer at the beginning to calculate inference time.
- Processes the image(s) through the
infer
method. - Generates the appropriate response object(s) using
make_response
. - Calculates and sets the time taken for inference.
- If visualization is requested, the predictions are drawn on the image.
Source code in inference/core/models/classification_base.py
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
|
make_response(predictions, img_dims, confidence=0.5, **kwargs)
¶
Create response objects for the given predictions and image dimensions.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
predictions
|
list
|
List of prediction arrays from the inference process. |
required |
img_dims
|
list
|
List of tuples indicating the dimensions (width, height) of each image. |
required |
confidence
|
float
|
Confidence threshold for filtering predictions. Defaults to 0.5. |
0.5
|
**kwargs
|
Additional parameters to influence the response creation process. |
{}
|
Returns:
Type | Description |
---|---|
Union[ClassificationInferenceResponse, List[ClassificationInferenceResponse]]
|
Union[ClassificationInferenceResponse, List[ClassificationInferenceResponse]]: A response object or a list of response objects encapsulating the prediction details. |
Notes
- If the model is multiclass, a
MultiLabelClassificationInferenceResponse
is generated for each image. - If the model is not multiclass, a
ClassificationInferenceResponse
is generated for each image. - Predictions below the confidence threshold are filtered out.
Source code in inference/core/models/classification_base.py
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 |
|
softmax(x)
staticmethod
¶
Compute softmax values for each set of scores in x.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
array
|
The input array containing the scores. |
required |
Returns:
Type | Description |
---|---|
np.array: The softmax values for each set of scores. |
Source code in inference/core/models/classification_base.py
340 341 342 343 344 345 346 347 348 349 350 351 |
|