Skip to content

Commit

Permalink
Remove type annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
oarriaga committed Apr 15, 2024
1 parent 0dc3483 commit 0300eef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions paz/pipelines/detection.py
Original file line number Diff line number Diff line change
Expand Up @@ -924,8 +924,8 @@ class DetectVVAD(Processor):
average_type: String. 'mean' or 'weighted'. How the predictions are averaged. Set averaging_window_size to 1 to
disable averaging
"""
def __init__(self, architecture: Architecture_Options = 'CNN2Plus1D_Light', stride=10, averaging_window_size=6,
average_type: Average_Options = 'weighted', offsets=[0, 0], colors=[[0, 255, 0], [255, 0, 0]]):
def __init__(self, architecture='CNN2Plus1D_Light', stride=10, averaging_window_size=6,
average_type='weighted', offsets=[0, 0], colors=[[0, 255, 0], [255, 0, 0]]):
super(DetectVVAD, self).__init__()
self.offsets = offsets
self.colors = colors
Expand Down

0 comments on commit 0300eef

Please sign in to comment.