| # Core dependencies for Sybil embedding extraction | |
| # Install with: pip install -r requirements.txt | |
| # HuggingFace Hub for model download | |
| huggingface_hub>=0.20.0 | |
| # PyTorch for model inference | |
| torch>=2.0.0 | |
| torchvision>=0.15.0 | |
| # Data processing | |
| numpy>=1.24.0 | |
| pandas>=2.0.0 | |
| # DICOM file handling | |
| pydicom>=2.4.0 | |
| # Image processing (required by Sybil model) | |
| Pillow>=10.0.0 | |
| # Model utilities | |
| scikit-learn>=1.3.0 | |
| tqdm>=4.65.0 | |
| # Optional but recommended for performance | |
| pyarrow>=14.0.0 | |
| # Note: For GPU support with CUDA 11.8, install PyTorch with: | |
| # pip install torch torchvision --index-url https://download.pytorch.org/whl/cu118 |