Amarthya7 commited on
Commit
0d53e62
Β·
verified Β·
1 Parent(s): 5653db5

Delete README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -75
README.md DELETED
@@ -1,75 +0,0 @@
1
- ---
2
- title: MediSync - Multi-Modal Medical Analysis System
3
- emoji: 🩺
4
- colorFrom: blue
5
- colorTo: yellow
6
- sdk: gradio
7
- sdk_version: 5.20.1
8
- app_file: app.py
9
- pinned: false
10
- ---
11
-
12
- # MediSync: Multi-Modal Medical Analysis System
13
-
14
- MediSync is an AI-powered healthcare solution that combines X-ray image analysis with patient report text processing to provide comprehensive medical insights.
15
-
16
- ## Features
17
-
18
- - **X-ray Image Analysis**: Detects abnormalities in chest X-rays using pre-trained vision models from Hugging Face.
19
- - **Medical Report Processing**: Extracts key information from patient reports using NLP models.
20
- - **Multi-modal Integration**: Combines insights from both image and text data for more accurate diagnosis suggestions.
21
- - **User-friendly Interface**: Simple web interface for uploading images and reports.
22
-
23
- ## Project Structure
24
-
25
- ```
26
- mediSync/
27
- β”œβ”€β”€ app.py # Main application with Gradio interface
28
- β”œβ”€β”€ models/
29
- β”‚ β”œβ”€β”€ image_analyzer.py # X-ray image analysis module
30
- β”‚ β”œβ”€β”€ text_analyzer.py # Medical report text analysis module
31
- β”‚ └── multimodal_fusion.py # Fusion of image and text insights
32
- β”œβ”€β”€ utils/
33
- β”‚ β”œβ”€β”€ preprocessing.py # Data preprocessing utilities
34
- β”‚ └── visualization.py # Result visualization utilities
35
- β”œβ”€β”€ data/
36
- β”‚ └── sample/ # Sample data for testing
37
- └── tests/ # Unit tests
38
- ```
39
-
40
- ## Setup Instructions
41
-
42
- 1. Clone this repository:
43
- ```bash
44
- git clone [repository-url]
45
- cd MediSync
46
- ```
47
-
48
- 2. Install dependencies:
49
- ```bash
50
- pip install -r requirements.txt
51
- ```
52
-
53
- 3. Run the application:
54
- ```bash
55
- python app.py
56
- ```
57
-
58
- 4. Access the web interface at `http://localhost:7860`
59
-
60
- ## Models Used
61
-
62
- - **X-ray Analysis**: facebook/deit-base-patch16-224-medical-cxr
63
- - **Medical Text Analysis**: medicalai/ClinicalBERT
64
- - **Additional Support Models**: Medical question answering and entity recognition models
65
-
66
- ## Use Cases
67
-
68
- - Preliminary screening of chest X-rays
69
- - Cross-validation of radiologist reports
70
- - Educational tool for medical students
71
- - Research tool for studying correlation between visual findings and written reports
72
-
73
- ## Note
74
-
75
- This system is designed as a support tool and should not replace professional medical diagnosis. Always consult with healthcare professionals for medical decisions.