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
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 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 | |
health_check()
async
Checks whether all dependencies are connected and ready to work
Source code in src/services.py
info()
generate_pred_dict(network, ids, instances, ids_as_keys=False, **kwargs)
async
Make predictions with a network for multiple instances and return dictionaries with ids and predictions
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
network |
Predictor
|
network to make predictions with |
required |
ids |
List
|
ids of inputs |
required |
instances |
List
|
inputs to the network |
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
predict_tags(instances, ids, custom_thresholds)
async
Call the Tagger network wih given inputs and get corresponding predictions. For more information on parameters, refer to Services.generate_pred_dict()
Source code in src/services.py
predict_exterior_styles(ids, instances)
async
Call the ExteriorStyles network wih given inputs and get corresponding predictions. For more information on parameters, refer to Services.generate_pred_dict()
Source code in src/services.py
encode(ids, instances)
async
Encode given images with the encoder network. For more information on parameters, refer to Services.generate_pred_dict()
Source code in src/services.py
classify_dht(instances, ids, 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
Source code in src/services.py
process_house_images(ids, instances, custom_thresholds)
async
Process all images of a single house via Image Processing Networks
Returns:
| Name | Type | Description |
|---|---|---|
out |
dict
|
predictions for given house. Contains tagger's tags per image, information on present features and averaged scores for exterior styles |
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(instance_ids, instances)
async
Run the input data through Encoder model, filter and prepare the output for publishing
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
instance_ids |
List
|
identifiers of images |
required |
instances |
List
|
images to embed |
required |
Returns:
| Name | Type | Description |
|---|---|---|
out |
list[PhotoEmbedding]
|
Vector embeddings and their ids |
Source code in src/services.py
publish_embeddings(core_listing_id, instance_ids, instances, compression)
async
Calculate embeddings and publish them to message broker
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
core_listing_id |
Any
|
identifier of a house |
required |
instance_ids |
List
|
identifiers of images |
required |
instances |
List
|
images to embed |
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(image, norm_thresh, initial_thresh)
async
staticmethod
Converts base64 decoded image into np.array and trim input image
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image |
str
|
input image (base64 image) |
required |
norm_thresh |
float
|
norm threshold to consider vectors the same |
required |
initial_thresh |
float
|
identification thresh |
required |
Returns:
| Name | Type | Description |
|---|---|---|
result |
str
|
output image (base64 encoded ) |
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