Upload requirements.txt with huggingface_hub
Browse files- requirements.txt +31 -0
requirements.txt
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core dependencies
|
2 |
+
torch>=1.7.0
|
3 |
+
torchvision>=0.8.0
|
4 |
+
numpy>=1.19.0
|
5 |
+
pandas>=1.2.0
|
6 |
+
scikit-learn>=0.24.0
|
7 |
+
scikit-survival>=0.15.0
|
8 |
+
|
9 |
+
# Image processing
|
10 |
+
Pillow>=8.0.0
|
11 |
+
opencv-python>=4.5.0
|
12 |
+
pydicom>=2.1.0
|
13 |
+
SimpleITK>=2.0.0
|
14 |
+
|
15 |
+
# Hugging Face integration
|
16 |
+
transformers>=4.20.0
|
17 |
+
huggingface-hub>=0.10.0
|
18 |
+
safetensors>=0.3.0
|
19 |
+
|
20 |
+
# Data handling
|
21 |
+
h5py>=3.1.0
|
22 |
+
tqdm>=4.60.0
|
23 |
+
|
24 |
+
# Optional but recommended
|
25 |
+
matplotlib>=3.3.0
|
26 |
+
seaborn>=0.11.0
|
27 |
+
jupyter>=1.0.0
|
28 |
+
ipywidgets>=7.6.0
|
29 |
+
|
30 |
+
# Medical imaging utilities (optional)
|
31 |
+
dcmtk # For DICOM conversion (system package)
|