m7mdal7aj commited on
Commit
9425e51
1 Parent(s): 4e59653

Update my_model/object_detection.py

Browse files
Files changed (1) hide show
  1. my_model/object_detection.py +1 -1
my_model/object_detection.py CHANGED
@@ -66,7 +66,7 @@ class ObjectDetector:
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, device_map = self.device)
70
  except Exception as e:
71
  print(f"Error loading Detic model: {e}")
72
  raise
 
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