Spaces:
Running
Running
File size: 266 Bytes
2e237ce |
1 2 3 4 5 6 7 8 9 |
from pdf_features import Rectangle
class Prediction:
def __init__(self, bounding_box: Rectangle, category_id: int, score: float):
self.bounding_box: Rectangle = bounding_box
self.category_id: int = category_id
self.score: float = score
|