Silent Control commited on
Commit
89687f4
·
verified ·
1 Parent(s): 89997d2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +55 -0
README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - object-detection
5
+ - yolov8
6
+ - grocery
7
+ - retail
8
+ - onnx
9
+ datasets:
10
+ - custom
11
+ metrics:
12
+ - map
13
+ ---
14
+
15
+ # NorgesGruppen Data Challenge - Model Weights
16
+
17
+ YOLO ensemble weights for grocery shelf product detection (356 categories).
18
+
19
+ ## Model Details
20
+
21
+ | Model | Architecture | Resolution | Size | Format |
22
+ |-------|-------------|------------|------|--------|
23
+ | model1.onnx | YOLOv8m | 640px | 94 MB | ONNX |
24
+ | model2.onnx | YOLOv8x | 1280px | 249 MB | ONNX |
25
+
26
+ ## Performance
27
+
28
+ - **Score**: 0.9006 (mAP@0.5)
29
+ - **Competition**: NM i AI 2026 - NorgesGruppen Data Challenge
30
+
31
+ ## Usage
32
+
33
+ ```python
34
+ import onnxruntime as ort
35
+ from PIL import Image
36
+ import numpy as np
37
+
38
+ # Load model
39
+ session = ort.InferenceSession("model1.onnx", providers=["CUDAExecutionProvider"])
40
+
41
+ # Preprocess image (letterbox to 640x640)
42
+ img = Image.open("shelf.jpg").convert("RGB")
43
+ # ... preprocessing code ...
44
+
45
+ # Run inference
46
+ output = session.run(None, {"images": img_array})[0]
47
+ ```
48
+
49
+ ## Source Code
50
+
51
+ Full training and inference code: [GitHub - ngd-challenge](https://github.com/ahmetacer5/ngd-challenge)
52
+
53
+ ## License
54
+
55
+ MIT License