Vansh180 commited on
Commit
a1a77e0
·
verified ·
1 Parent(s): b5a0c9c

Upload 2 files

Browse files
Files changed (2) hide show
  1. README.md +12 -0
  2. app.py +1 -1
README.md CHANGED
@@ -1,3 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
  # 🧾 Model Card — PotholeNet-YOLO11m-v1
2
 
3
  ## 🧠 Model Overview
 
1
+ ---
2
+ title: PotholeNet YOLO11m
3
+ emoji: 🛑
4
+ colorFrom: red
5
+ colorTo: gray
6
+ sdk: gradio
7
+ sdk_version: 5.16.0
8
+ app_file: app.py
9
+ pinned: false
10
+ license: mit
11
+ ---
12
+
13
  # 🧾 Model Card — PotholeNet-YOLO11m-v1
14
 
15
  ## 🧠 Model Overview
app.py CHANGED
@@ -5,7 +5,7 @@ from PIL import Image
5
 
6
  # Load the YOLO model - YOLOv11m for pothole, road damage, and garbage detection
7
  try:
8
- model = YOLO("Vision Classification.pt")
9
  except Exception as e:
10
  print(f"Error loading model: {e}")
11
  model = None
 
5
 
6
  # Load the YOLO model - YOLOv11m for pothole, road damage, and garbage detection
7
  try:
8
+ model = YOLO("model.pt")
9
  except Exception as e:
10
  print(f"Error loading model: {e}")
11
  model = None