Update README.txt
Browse files- README.txt +14 -0
README.txt
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Security Scan Note
|
| 2 |
+
|
| 3 |
+
The ClamAV scan flags this model as "suspicious" due to false positive detection
|
| 4 |
+
of Python code in PyTorch model files. This is a known issue with YOLOv5 models:
|
| 5 |
+
|
| 6 |
+
- The model contains legitimate Python code for model architecture
|
| 7 |
+
- File system access is required for loading configurations
|
| 8 |
+
- This is standard behavior for PyTorch saved models
|
| 9 |
+
- VirusTotal, JFrog, and Protect AI scans show no issues
|
| 10 |
+
|
| 11 |
+
For verification, you can:
|
| 12 |
+
1. Inspect the model training code in this repository
|
| 13 |
+
2. Export to ONNX format (see instructions below)
|
| 14 |
+
3. Review the YOLOv5 official repository for similar reports
|