fernandobarranco commited on
Commit
aef54aa
·
verified ·
1 Parent(s): f7325a3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -1,3 +1,10 @@
 
 
 
 
 
 
 
1
  def predict(path:str):
2
  model = YOLO("yolov8s.yaml")
3
  model = YOLO("best-carvana.pt")
 
1
+ import cv2
2
+ import numpy as np
3
+ import gradio as gr
4
+
5
+ from ultralytics import YOLO
6
+
7
+
8
  def predict(path:str):
9
  model = YOLO("yolov8s.yaml")
10
  model = YOLO("best-carvana.pt")