m7mdal7aj commited on
Commit
8aa443c
1 Parent(s): 9c23df5

Update my_model/object_detection.py

Browse files
Files changed (1) hide show
  1. my_model/object_detection.py +2 -2
my_model/object_detection.py CHANGED
@@ -65,8 +65,8 @@ class ObjectDetector:
65
 
66
  try:
67
  model_path = get_model_path('deformable-detr-detic')
68
- self.processor = AutoImageProcessor.from_pretrained(model_path, device_map = self.device)
69
- self.model = AutoModelForObjectDetection.from_pretrained(model_path, device_map = self.device)
70
  except Exception as e:
71
  print(f"Error loading Detic model: {e}")
72
  raise
 
65
 
66
  try:
67
  model_path = get_model_path('deformable-detr-detic')
68
+ self.processor = AutoImageProcessor.from_pretrained(model_path)
69
+ self.model = AutoModelForObjectDetection.from_pretrained(model_path)
70
  except Exception as e:
71
  print(f"Error loading Detic model: {e}")
72
  raise