openvision commited on
Commit
64b5b8a
·
verified ·
1 Parent(s): 87b86de

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. README.md +71 -0
  2. model.pt +3 -0
README.md ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: agpl-3.0
3
+ pipeline_tag: object-detection
4
+ library_name: yolov26
5
+ ---
6
+
7
+ # YOLO26-L
8
+
9
+ Ultralytics YOLO26 is the latest evolution in the YOLO series of real-time object detectors, engineered from the ground up for edge and low-power devices. It introduces a streamlined design that removes unnecessary complexity while integrating targeted innovations to deliver faster, lighter, and more accessible deployment.
10
+
11
+ ## Model Specifications
12
+
13
+ | Property | Value |
14
+ |----------|-------|
15
+ | Input Size | 640 pixels |
16
+ | mAP (50-95) | 55.0 |
17
+ | mAP (50-95, e2e) | 54.4 |
18
+ | CPU Speed (ONNX) | 286.2 ms |
19
+ | T4 TensorRT10 Speed | 6.2 ms |
20
+ | Parameters | 24.8M |
21
+ | FLOPs | 86.4B |
22
+
23
+ ## Key Features
24
+
25
+ The architecture of YOLO26 is guided by three core principles:
26
+
27
+ **Simplicity:** YOLO26 is a native end-to-end model, producing predictions directly without the need for non-maximum suppression (NMS). By eliminating this post-processing step, inference becomes faster, lighter, and easier to deploy in real-world systems.
28
+
29
+ **Deployment Efficiency:** The end-to-end design cuts out an entire stage of the pipeline, dramatically simplifying integration, reducing latency, and making deployment more robust across diverse environments.
30
+
31
+ **Training Innovation:** YOLO26 introduces the MuSGD optimizer, a hybrid of SGD and Muon — inspired by Moonshot AI's Kimi K2 breakthroughs in LLM training. This optimizer brings enhanced stability and faster convergence.
32
+
33
+ ### Additional Highlights
34
+
35
+ - **DFL Removal:** Simplified inference and broader hardware compatibility
36
+ - **End-to-End NMS-Free Inference:** Reduced latency and easier production integration
37
+ - **ProgLoss + STAL:** Improved small-object recognition
38
+ - **Up to 43% Faster CPU Inference:** Optimized for edge computing
39
+
40
+ ## Usage
41
+
42
+ Install ultralytics with `pip install ultralytics`.
43
+
44
+ Download the model.
45
+ ```python
46
+ from huggingface_hub import hf_hub_download
47
+
48
+ model_path = hf_hub_download(repo_id="openvision/yolo26-l", filename="model.pt")
49
+ ```
50
+
51
+ Infer.
52
+ ```python
53
+ from ultralytics import YOLO
54
+ from PIL import Image
55
+ import requests
56
+
57
+ model = YOLO(model_path)
58
+
59
+ # Train the model on the COCO8 example dataset for 100 epochs
60
+ results = model.train(data="coco8.yaml", epochs=100, imgsz=640)
61
+
62
+ url = 'http://images.cocodataset.org/val2017/000000039769.jpg'
63
+ image = Image.open(requests.get(url, stream=True).raw)
64
+
65
+ # Run inference with the YOLO26l model on the image
66
+ results = model.predict(image)
67
+ ```
68
+
69
+ ## Documentation
70
+
71
+ For more information, see the [official YOLO26 documentation](https://docs.ultralytics.com/models/yolo26/).
model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9fe3c544f2b19bebad7ea41e76d7ad3d88b7c2f10d11d24430c5311f6b32db26
3
+ size 53211173