-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
38 lines (30 loc) · 861 Bytes
/
Copy pathrequirements.txt
File metadata and controls
38 lines (30 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Core scientific stack
numpy>=1.24
pandas>=2.0
matplotlib>=3.7
# Configuration
pyyaml>=6.0
# Datasets and IO
datasets>=2.14
ir-datasets>=0.5.5 # official MS MARCO Passage corpus + dev/small
lxml>=6.1.0 # constrain XML/HTML parsing dependency to patched releases
# Lexical retrieval
bm25s>=0.2 # primary backend for the BM25 baseline
# Dense retrieval
sentence-transformers>=5.5.1
faiss-cpu>=1.7
# Generation
torch>=2.12.0
transformers>=5.10.2
sentencepiece>=0.1.99
# Evaluation
evaluate>=0.4
rouge_score>=0.1.2
sacrebleu>=2.3
bert_score>=0.3.13 # semantic-proxy generation eval (sanity check)
# Optional serving/tracking/evaluation extras are declared in pyproject.toml:
# pip install -e ".[serve]"
# pip install -e ".[tracking]"
# pip install -e ".[evaluation]"
# Testing
pytest>=9.1.1