gajeshladhar commited on
Commit
c5e40a5
·
1 Parent(s): 9db694b

readme.md updated

Browse files
Files changed (1) hide show
  1. README.md +13 -12
README.md CHANGED
@@ -22,6 +22,19 @@ license: cc-by-nc-4.0
22
 
23
  ---
24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
  ## 🧠 Architecture: DiNO × YOLO × I-JEPA
27
 
@@ -144,18 +157,6 @@ To evaluate transferability to structural segmentation tasks, we tested `core-di
144
  | Training Time | ~48h on 1×A100 |
145
 
146
 
147
- ## 🚀 Quickstart
148
-
149
- ```python
150
- from ultralytics import YOLO
151
-
152
- ckpt = "https://huggingface.co/gajeshladhar/core-dino/resolve/main/checkpoints/student.pt"
153
- model = YOLO("yolo11x-obb.pt") # obb, bbox or seg any model
154
- model.model.load_state_dict(
155
- {k.replace('layers.', 'model.'): v for k, v in torch.hub.load_state_dict_from_url(ckpt, map_location='cpu').items()},
156
- strict=False)
157
- ```
158
-
159
  ---
160
  ## 💳 License
161
 
 
22
 
23
  ---
24
 
25
+ ## 🌀 Quickstart
26
+
27
+ ```python
28
+ from ultralytics import YOLO
29
+
30
+ ckpt = "https://huggingface.co/gajeshladhar/core-dino/resolve/main/checkpoints/student.pt"
31
+ model = YOLO("yolo11x-obb.pt") # obb, bbox or seg any model
32
+ model.model.load_state_dict(
33
+ {k.replace('layers.', 'model.'): v for k, v in torch.hub.load_state_dict_from_url(ckpt, map_location='cpu').items()},
34
+ strict=False)
35
+ ```
36
+
37
+ ---
38
 
39
  ## 🧠 Architecture: DiNO × YOLO × I-JEPA
40
 
 
157
  | Training Time | ~48h on 1×A100 |
158
 
159
 
 
 
 
 
 
 
 
 
 
 
 
 
160
  ---
161
  ## 💳 License
162