Skip to content

Commit

Permalink
fix flake8 error
Browse files Browse the repository at this point in the history
  • Loading branch information
lalmei committed Jan 25, 2021
1 parent 2130448 commit 75a879c
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion src/whylogs/core/annotation_profiling.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@


import json
from typing import Callable, Optional, Dict, List

import pandas as pd
Expand All @@ -10,6 +9,22 @@


class Rectangle:

"""
Helper class to compute minimal bouding box intersections and/or iou
minimal stats properties of boudning box
Attributes:
area (float): Description
aspect_ratio (TYPE): Description
boundingBox (TYPE): Description
centroid (TYPE): Description
confidence (TYPE): Description
height (TYPE): Description
labels (TYPE): Description
width (TYPE): Description
"""

# replace with shapley functions and methods
# or move to cpp/cpython
def __init__(self, boundingBox, confidence=None, labels=None):
Expand Down

0 comments on commit 75a879c

Please sign in to comment.