Services
Main functionality
Main business logic implementation
Services
Main business logic implementation
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tagger_net |
Classifier
|
tagger model predictor |
tagger
|
exterior_styles_net : Classifier exterior style model predictor
encoder_net : Encoder the encoder model predictor
message_broker_client : AsyncRabbitClient message broker client used to publish embeddings
Source code in src/services.py
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 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 | |
start()
async
stop()
async
Stop the dependencies and close the module-level aiohttp sessions (TF Serving + image downloader). Note this makes the service one-shot per process: a second start after a stop would reuse the closed sessions.
Source code in src/services.py
health_check()
async
Checks whether all dependencies are connected and ready to work
Source code in src/services.py
info()
generate_pred_dict(network, preprocessed, ids_as_keys=False, **kwargs)
async
Make predictions with a network for multiple preprocessed images and return dictionaries with ids and predictions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
network |
Predictor
|
network to make predictions with |
required |
preprocessed |
List[PreprocessedImage]
|
preprocessed images (from :meth: |
required |
ids_as_keys |
bool
|
whether to use ids as keys in the returned dict or include them as a value of "id" field |
False
|
**kwargs |
additional arguments for .predict method of the network |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
out |
List of dict, dict
|
predictions per image with id and status |
Source code in src/services.py
prepare_inputs(images, networks)
async
Preprocess request images once for every network that will consume them.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
images |
List[ImageSource]
|
request items, each carrying either a base64 |
required |
networks |
List[Predictor]
|
the networks the batch will be fed to; one resized variant is produced per distinct
|
required |
Returns:
| Name | Type | Description |
|---|---|---|
out |
List[PreprocessedImage]
|
one entry per input item, in the same order |
Source code in src/services.py
predict_tags(images, custom_thresholds)
async
Call the Tagger network with given request images and get corresponding predictions. For more information on parameters, refer to Services.generate_pred_dict()
Source code in src/services.py
predict_exterior_styles(images)
async
Call the ExteriorStyles network with given request images and get corresponding predictions. For more information on parameters, refer to Services.generate_pred_dict()
Source code in src/services.py
encode(images)
async
Encode given request images with the encoder network. For more information on parameters, refer to Services.generate_pred_dict()
Source code in src/services.py
classify_dht(preprocessed, custom_thresholds)
async
Call Tagger network, then call the Exterior Styles for the samples with "facade" predicted tag. Return all tags in a single dict for each sample for each network.
The facade subset reuses the SAME :class:PreprocessedImage objects, so no image is
downloaded, decoded or resized twice.
Source code in src/services.py
process_house_images(images, custom_thresholds, publish_embeddings=False, core_listing_id=None, embeddings_compression=CompressionMethod.GZIP)
async
Process all images of a single house via Image Processing Networks
The images are preprocessed ONCE for every network involved (tagger, exterior styles and — when publishing embeddings — the encoder), so each photo is downloaded, decoded and resized a single time and shared across all passes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
images |
List[ImageSource]
|
request house images, each carrying either a base64 |
required |
custom_thresholds |
(float, list, dict)
|
per-class thresholds for the Tagger |
required |
publish_embeddings |
bool
|
whether to also encode the images and publish their embeddings to the message broker |
False
|
core_listing_id |
Any
|
identifier of the house (used when publishing embeddings) |
None
|
embeddings_compression |
CompressionMethod
|
compression method to use when publishing embeddings |
GZIP
|
Returns:
| Name | Type | Description |
|---|---|---|
out |
dict
|
predictions for given house. Contains tagger's tags per image, information on present features, averaged scores for exterior styles and (if requested) publishing results |
Source code in src/services.py
get_average_style(style_predictions_per_image)
Calculate average style of the house given predictions of the ExteriorStyle Classifier
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
style_predictions_per_image |
dict
|
per image predictions for exterior styles |
required |
Returns:
| Name | Type | Description |
|---|---|---|
out |
List of dict
|
average score for each possible class |
Source code in src/services.py
rank_images_by_class(tagger_dicts, classes)
Rank images by Tagger's confidence that given scene exists there
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tagger_dicts |
List[dict]
|
valid predictions per_image |
required |
classes |
Iterable[str]
|
scenes to rank |
required |
Returns:
| Name | Type | Description |
|---|---|---|
out |
List of Dict
|
Scenes and list of images containing them sorted by probability (highest first) |
Source code in src/services.py
postprocess_prediction_dicts(results_per_image)
staticmethod
Postprocess network prediction dictionaries
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
results_per_image |
List[dict]
|
prediction dictionaries containing scores in format {"feature" : probability} |
required |
Returns:
| Name | Type | Description |
|---|---|---|
out |
List
|
dictionaries containing scores in format {"name" : feature, "probability" : probability} |
Source code in src/services.py
prepare_embeddings(preprocessed)
async
Run the input data through Encoder model, filter and preprocess the output for publishing
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
preprocessed |
List[PreprocessedImage]
|
preprocessed images (from :meth: |
required |
Returns:
| Name | Type | Description |
|---|---|---|
out |
list[PhotoEmbedding]
|
Vector embeddings and their ids |
Source code in src/services.py
publish_embeddings(core_listing_id, preprocessed, compression)
async
Calculate embeddings and publish them to message broker
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
core_listing_id |
Any
|
identifier of a house |
required |
preprocessed |
List[PreprocessedImage]
|
preprocessed images (from :meth: |
required |
compression |
CompressionMethod
|
Compression method to use. Defaults to None |
required |
Returns:
| Name | Type | Description |
|---|---|---|
out |
PublishResults
|
Results of the publishing |
Source code in src/services.py
trim_image(item, norm_thresh, initial_thresh)
async
Trim the background from a single image, provided as either a base64 image or a url.
The image is used at full resolution (never the inference resize), so trimming operates on the original pixels.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
item |
ImageSource
|
request item exposing |
required |
norm_thresh |
float
|
norm threshold to consider vectors the same |
required |
initial_thresh |
float
|
identification thresh |
required |
Returns:
| Name | Type | Description |
|---|---|---|
result |
str
|
trimmed image as a urlsafe-base64 PNG string |
Source code in src/services.py
Middlewares for pre- and post- processing of requests/responses
LoggingMiddleware
Bases: BaseHTTPMiddleware
Basic logging middleware inherited from starlette.BaseHTTPMiddleware
Source code in src/app/middlewares.py
__init__(app, logger)
Init object with src and logger
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
app |
FastAPI
|
application object where middleware need to be added |
required |
logger |
loger
|
already configured logger for logging requests |
required |
Source code in src/app/middlewares.py
dispatch(request, call_next)
async
Overriding BaseHTTPMiddleware.dispatch method to implement logging logic
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
request |
Request
|
current request |
required |
call_next |
RequestResponseEndpoint
|
call function |
required |
Returns:
| Name | Type | Description |
|---|---|---|
streaming_response |
StreamingResponse
|
streaming response for the endpoint |
Source code in src/app/middlewares.py
ExceptionHandlerMiddleware
Bases: BaseHTTPMiddleware
A middleware to handle errors
Source code in src/app/middlewares.py
dispatch(request, call_next)
async
Try to process the request. If failed, return details about the exception
Source code in src/app/middlewares.py
extract_info(error)
staticmethod
Extract the type and the message of an error and return as a dict
validation_exception_handler(_request, exc)
async
Handler for FastAPI request-validation errors (registered in main.py).
Mirrors FastAPI's default 422 body but truncates long echoed input values, so a failed
validation of a base64-image payload does not dump megabytes back at the client. Registered
as an exception handler (rather than rewriting 422 responses in middleware) so it only ever
touches genuine validation errors and leaves response headers of other 422s intact.