Skip to content

Commit

Permalink
Fix error in build.py
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobChalk committed Aug 2, 2024
1 parent b8e359e commit 7b69d3a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion detection/time_interval_machine/models/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ def build_model(args, gpu_id=None):
data_modality=args.data_modality,
num_feats=args.num_feats,
include_verb_noun=args.include_verb_noun,
iou_threshold=args.iou_threshold,
label_smoothing=args.label_smoothing
)

Expand Down Expand Up @@ -62,4 +63,4 @@ def build_model(args, gpu_id=None):
find_unused_parameters=False
)

return model, args
return model, args

0 comments on commit 7b69d3a

Please sign in to comment.