SamarpeetGarad commited on
Commit
efd5768
·
verified ·
1 Parent(s): 72d70e3

Upload requirements.txt with huggingface_hub

Browse files
Files changed (1) hide show
  1. requirements.txt +35 -0
requirements.txt ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # RadioFlow: AI-Powered Radiology Workflow Agent
2
+ # MedGemma Impact Challenge
3
+
4
+ # Core ML/AI
5
+ torch>=2.0.0
6
+ transformers>=4.40.0
7
+ accelerate>=0.27.0
8
+ safetensors>=0.4.0
9
+
10
+ # HAI-DEF Models
11
+ huggingface-hub>=0.20.0
12
+
13
+ # Image Processing
14
+ Pillow>=10.0.0
15
+ opencv-python>=4.8.0
16
+
17
+ # UI Framework
18
+ gradio>=4.19.0
19
+
20
+ # Visualization
21
+ plotly>=5.18.0
22
+ matplotlib>=3.8.0
23
+
24
+ # Data Processing
25
+ numpy>=1.24.0
26
+ pandas>=2.0.0
27
+
28
+ # Utilities
29
+ python-dotenv>=1.0.0
30
+ requests>=2.31.0
31
+ tqdm>=4.66.0
32
+
33
+ # Audio (for potential MedASR integration)
34
+ librosa>=0.10.0
35
+ soundfile>=0.12.0