kbarnard commited on
Commit
f37d5d2
1 Parent(s): 9a14eb7
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -2,7 +2,7 @@ import glob
2
  import gradio as gr
3
  from ultralytics import YOLO
4
 
5
- model_path = "yolov8m.pt"
6
  model = YOLO(model_path)
7
 
8
 
@@ -11,7 +11,7 @@ def run(image_path):
11
  return results[0].plot()[:, :, ::-1] # reverse channels for gradio
12
 
13
 
14
- title = "MBARI Monterey Bay Benthic"
15
  description = (
16
  "Gradio demo for the FathomNet2023 Baseline Model: Developed by researchers"
17
  " at the Monterey Bay Aquarium Research Institute (MBARI) to serve as a"
 
2
  import gradio as gr
3
  from ultralytics import YOLO
4
 
5
+ model_path = "fathomnet2023_baseline.pt"
6
  model = YOLO(model_path)
7
 
8
 
 
11
  return results[0].plot()[:, :, ::-1] # reverse channels for gradio
12
 
13
 
14
+ title = "FathomNet2023 Competition Baseline"
15
  description = (
16
  "Gradio demo for the FathomNet2023 Baseline Model: Developed by researchers"
17
  " at the Monterey Bay Aquarium Research Institute (MBARI) to serve as a"