Skip to content

Commit

Permalink
fix format issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonalaird committed Sep 3, 2024
1 parent 619780e commit f722be4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vision_agent/tools/meta_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -458,9 +458,9 @@ def florence2_fine_tuning(bboxes: List[Dict[str, Any]], task: str) -> str:
for bbox_input in bboxes_input
]
landing_api = LandingPublicAPI()
fine_tune_id = str(landing_api.launch_fine_tuning_job(
"florencev2", task_type, fine_tuning_request
))
fine_tune_id = str(
landing_api.launch_fine_tuning_job("florencev2", task_type, fine_tuning_request)
)
print(f"[Florence2 fine tuning id: {fine_tune_id}]")
return fine_tune_id

Expand Down

0 comments on commit f722be4

Please sign in to comment.