Skip to content

Add type hints #57

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/vision/faster_rcnn/evaluation/coco_evaluator.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def __init__(self, iou_threshold: float = None, verbose=False):
self.verbose = verbose
self.silencer = Silencer()

def compute(self, targets_json: dict, predictions_json: List[dict]):
def compute(self, targets_json: dict, predictions_json: List[Dict]):
"""
Calculate mAP from COCO-formatted dictionaries containing predictions and targets.

Expand Down Expand Up @@ -150,7 +150,7 @@ def create_targets_coco_json_from_df(
@classmethod
def create_predictions_coco_json_from_df(
cls, predictions_df: pd.DataFrame
) -> List[dict]:
) -> List[Dict]:
"""
Create a COCO-formatted predictions list of dictionaries that can be used for evaluation.

Expand Down
Loading