-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrequirements.txt
More file actions
54 lines (46 loc) · 1.39 KB
/
requirements.txt
File metadata and controls
54 lines (46 loc) · 1.39 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# ============================================================
# requirements.txt — Python Dependency Manifest
#
# Declares all runtime and development dependencies for the
# Adaptive DeFi Fraud Detection system. Versions are pinned
# to ensure full reproducibility of the training, evaluation,
# and inference environments. Dependencies are grouped by
# functional category for clarity.
#
# INSTALLATION NOTE:
# PyTorch must be installed separately using the CPU wheel
# index before installing the remaining dependencies:
# pip install torch==2.3.1 torchvision==0.18.1 torchaudio==2.3.1 \
# --index-url https://download.pytorch.org/whl/cpu
# ============================================================
# --- INSTALLATION NOTE ---
# To install the CPU version of Torch (required for this project), run:
# pip install torch==2.3.1 torchvision==0.18.1 torchaudio==2.3.1 --index-url https://download.pytorch.org/whl/cpu
# -------------------------
# Core Data Science
pandas==2.2.2
numpy==1.26.4
scikit-learn==1.5.1
joblib==1.4.2
packaging==24.1
# Deep Learning (Pinned)
dgl==2.0.0
# Graph & Visualization
networkx==3.3
matplotlib==3.9.0
seaborn==0.13.2
# UI / Dashboard
streamlit==1.36.0
streamlit-agraph==0.0.45
# Database & Blockchain
neo4j==5.23.0
web3==6.20.0
requests==2.32.3
# Utilities
python-dotenv==1.0.1
xgboost==1.7.6
decorator==5.1.1
pygments==2.18.0
# Development & Maintenance
ruff
vulture