ladyzoe commited on
Commit
ec1542a
·
verified ·
1 Parent(s): c1525b2

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +6 -9
requirements.txt CHANGED
@@ -1,12 +1,9 @@
1
- # 為了匹配 best.pt 模型,明確指定所有核心套件版本
2
- ultralytics==8.1.0
3
- torch==2.1.2
4
- torchvision==0.16.2
5
 
6
- # 根據日誌建議,鎖定 numpy 版本避免衝突
7
- numpy<2.0
8
-
9
- # 其他必要的 Web 服務套件
10
  fastapi
11
  python-multipart
12
- uvicorn[standard]
 
1
+ # 明確指定所有執行 ONNX 模型所需的套件
2
+ ultralytics
3
+ onnx
4
+ onnxruntime
5
 
6
+ # Web 服務必要的套件
 
 
 
7
  fastapi
8
  python-multipart
9
+ uvicorn[standard]