LongK171 commited on
Commit
ab0189c
·
1 Parent(s): 9ea5b58
Files changed (1) hide show
  1. requirements.txt +9 -7
requirements.txt CHANGED
@@ -1,12 +1,12 @@
1
  # ===============================
2
- # Core Python / AI Environment
3
  # ===============================
4
  torch==2.3.1
5
  torchvision==0.18.1
6
  torchaudio==2.3.1
7
 
8
  # ===============================
9
- # Transformers Ecosystem
10
  # ===============================
11
  transformers==4.44.2
12
  sentence-transformers==3.0.1
@@ -22,10 +22,8 @@ nltk>=3.9
22
  rouge-score>=0.1.2
23
 
24
  # ===============================
25
- # Semantic Search / FAISS
26
  # ===============================
27
- # Nếu GPU runtime (T4 / A10G) => dùng faiss-gpu
28
- # Nếu CPU-only => đổi sang faiss-cpu
29
  faiss-cpu==1.8.0
30
 
31
  # ===============================
@@ -35,16 +33,20 @@ PyMuPDF>=1.23.0
35
  underthesea>=6.8.0
36
  numpy>=1.26.0
37
  pandas>=2.2.0
 
38
 
39
  # ===============================
40
- # Web / API
41
  # ===============================
42
  fastapi>=0.111.0
43
  uvicorn[standard]>=0.30.0
 
44
 
45
  # ===============================
46
- # Utils
47
  # ===============================
48
  regex>=2024.4.16
49
  tqdm>=4.66.3
50
  requests>=2.31.0
 
 
 
1
  # ===============================
2
+ # Core Deep Learning (CPU)
3
  # ===============================
4
  torch==2.3.1
5
  torchvision==0.18.1
6
  torchaudio==2.3.1
7
 
8
  # ===============================
9
+ # Transformers / NLP Ecosystem
10
  # ===============================
11
  transformers==4.44.2
12
  sentence-transformers==3.0.1
 
22
  rouge-score>=0.1.2
23
 
24
  # ===============================
25
+ # Semantic Search / FAISS (CPU)
26
  # ===============================
 
 
27
  faiss-cpu==1.8.0
28
 
29
  # ===============================
 
33
  underthesea>=6.8.0
34
  numpy>=1.26.0
35
  pandas>=2.2.0
36
+ openpyxl>=3.1.3
37
 
38
  # ===============================
39
+ # Web / API (FastAPI)
40
  # ===============================
41
  fastapi>=0.111.0
42
  uvicorn[standard]>=0.30.0
43
+ pydantic>=2.8.0
44
 
45
  # ===============================
46
+ # Utility & Helpers
47
  # ===============================
48
  regex>=2024.4.16
49
  tqdm>=4.66.3
50
  requests>=2.31.0
51
+ psutil>=5.9.0
52
+ scikit-learn>=1.4.0