kajalahir commited on
Commit
0f11c36
·
verified ·
1 Parent(s): 488e223

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -26,7 +26,7 @@ pip install git+https://github.com/THU-MIG/yolov10.git
26
  ```python
27
  from ultralytics import YOLOv10
28
 
29
- model = YOLOv10.from_pretrained('jameslahm/yolov10n')
30
  # Training
31
  model.train(...)
32
  # after training, one can push to the hub
@@ -43,7 +43,7 @@ Here's an end-to-end example showcasing inference on a cats image:
43
  ```python
44
  from ultralytics import YOLOv10
45
 
46
- model = YOLOv10.from_pretrained('jameslahm/yolov10n')
47
  source = 'http://images.cocodataset.org/val2017/000000039769.jpg'
48
  model.predict(source=source, save=True)
49
  ```
 
26
  ```python
27
  from ultralytics import YOLOv10
28
 
29
+ model = YOLOv10.from_pretrained('kajalahir/yolov10-finetunedkajalahir/yolov10-finetuned')
30
  # Training
31
  model.train(...)
32
  # after training, one can push to the hub
 
43
  ```python
44
  from ultralytics import YOLOv10
45
 
46
+ model = YOLOv10.from_pretrained('kajalahir/yolov10-finetuned')
47
  source = 'http://images.cocodataset.org/val2017/000000039769.jpg'
48
  model.predict(source=source, save=True)
49
  ```