tom-b974 commited on
Commit
9806e20
·
verified ·
1 Parent(s): ca9ddc5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -1
README.md CHANGED
@@ -27,7 +27,22 @@ Why YOLOv11s?
27
  Efficiency: YOLO (You Only Look Once) models are known for their high-speed performance and accuracy, ideal for real-time applications.
28
  Versatility: YOLOv11s builds upon prior versions, improving object detection, handling small objects, and performing well under challenging visual conditions.
29
  Frugality: Optimized for computational efficiency, aligning with the sustainability goals of the Frugal AI Challenge.
30
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  ## Data Preprocessing:
32
  Fine-Tuning YOLOv11:
33
  Load a pre-trained YOLOv11s model as a starting point (transfer learning).
 
27
  Efficiency: YOLO (You Only Look Once) models are known for their high-speed performance and accuracy, ideal for real-time applications.
28
  Versatility: YOLOv11s builds upon prior versions, improving object detection, handling small objects, and performing well under challenging visual conditions.
29
  Frugality: Optimized for computational efficiency, aligning with the sustainability goals of the Frugal AI Challenge.
30
+
31
+ ### Requirelents:
32
+ additional package:
33
+ - ultralytics
34
+ - torch
35
+ - numpy
36
+
37
+ Dockerfile had to be updated:
38
+ ```
39
+ USER root
40
+ RUN apt-get update && apt-get install -y libgl1
41
+
42
+ # Switch to non-root user
43
+ USER user
44
+ ```
45
+
46
  ## Data Preprocessing:
47
  Fine-Tuning YOLOv11:
48
  Load a pre-trained YOLOv11s model as a starting point (transfer learning).