File size: 7,417 Bytes
5d14125 |
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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 |
# π¬ Medical AI System Documentation
## Project Overview
This project contains two advanced AI systems for medical imaging and risk assessment:
1. **Pregnancy Risk Prediction Model** - Predicts pregnancy complications using clinical data
2. **Fetal Ultrasound Plane Classification** - Classifies fetal ultrasound images into anatomical planes
---
## π€± Pregnancy Risk Prediction Model
### Model Performance
- **Algorithm**: Random Forest Classifier
- **Accuracy**: 100% on test data
- **Features**: 11 clinical parameters
- **Classes**: High Risk, Low Risk
- **Dataset**: 1,187 patient records
### Key Features
- Age, Blood Pressure (Systolic/Diastolic)
- Blood Sugar, Body Temperature, BMI
- Medical History (Previous Complications, Diabetes)
- Mental Health, Heart Rate
### Feature Importance (Top 5)
1. **Blood Sugar (BS)**: 22.8%
2. **Preexisting Diabetes**: 21.6%
3. **Heart Rate**: 16.0%
4. **BMI**: 14.7%
5. **Gestational Diabetes**: 8.5%
### Model Metrics
```
Classification Report:
precision recall f1-score support
High 1.00 1.00 1.00 95
Low 1.00 1.00 1.00 143
accuracy 1.00 238
macro avg 1.00 1.00 1.00 238
weighted avg 1.00 1.00 1.00 238
```
---
## π¬ Fetal Ultrasound Plane Classification
### Model Performance
- **Algorithm**: Vision Transformer (ViT-Base-Patch16-224)
- **Validation Accuracy**: 91.69%
- **Training Time**: 18.5 minutes (Apple Silicon M4)
- **Dataset**: 12,400 ultrasound images
- **Classes**: 9 anatomical plane categories
### Training Configuration
- **Device**: Apple Silicon MPS (Metal Performance Shaders)
- **Batch Size**: 2 (thermal-optimized)
- **Epochs**: 2
- **Learning Rate**: 5e-5
- **Architecture**: ARM64 optimized
### Classification Categories
#### Fetal Brain Planes (4 types)
1. **Trans-thalamic**: 1,638 images
2. **Trans-cerebellum**: 714 images
3. **Trans-ventricular**: 597 images
4. **Other brain views**: 143 images
#### Anatomical Structures (4 types)
1. **Fetal thorax**: 1,718 images
2. **Maternal cervix**: 1,626 images
3. **Fetal femur**: 1,040 images
4. **Fetal abdomen**: 711 images
#### Quality Control (1 type)
1. **Other/Unclear**: 4,213 images
### Training Metrics
```
Final Training Loss: 0.21
Validation Loss: 0.316
Training Speed: 4.47 iterations/second
System Resources:
- CPU Usage: 5.4% (post-training)
- Memory Usage: 65.3%
- Temperature: Stable (no overheating)
```
### Apple Silicon Optimizations
- **MPS Acceleration**: Full M4 chip utilization
- **Thermal Management**: Prevented overheating
- **Memory Efficiency**: Optimized batch sizes
- **Native Performance**: ARM64 PyTorch builds
---
## ποΈ System Architecture
### Project Structure
```
hackathon15092025/
βββ src/ # Source code
β βββ app.py # Pregnancy risk Streamlit app
β βββ pregnancy_risk_prediction.py
βββ fetal_plane_app.py # Fetal plane Streamlit app
βββ fetal_plane_classifier.py # Training script
βββ models/ # Trained models
β βββ pregnancy_risk_model.pkl
β βββ fetal_plane_model/
βββ data/ # Datasets
β βββ Dataset - Updated.csv
βββ FETAL_PLANES_ZENODO/ # Ultrasound dataset
βββ static/css/ # Styling
βββ index.html # Main dashboard
βββ requirements*.txt # Dependencies
```
### Technology Stack
- **Machine Learning**: scikit-learn, PyTorch, Transformers
- **Web Framework**: Streamlit
- **Frontend**: HTML5, CSS3, JavaScript
- **Visualization**: Plotly, Matplotlib
- **Deployment**: Apple Silicon optimized
---
## π Deployment Guide
### Prerequisites
- Python 3.9+
- macOS with Apple Silicon (M1/M2/M3/M4)
- 8GB+ RAM recommended
### Installation
```bash
# Clone repository
cd /Users/karthik/Projects/hackathon15092025
# Install dependencies
pip install -r requirements.txt
pip install -r requirements_fetal.txt
# Train models (if needed)
python src/pregnancy_risk_prediction.py
python train_fetal_model_thermal.py
```
### Running Applications
```bash
# Pregnancy Risk App (Port 8501)
streamlit run src/app.py
# Fetal Plane App (Port 8502)
streamlit run fetal_plane_app.py --server.port 8502
# Main Dashboard
open index.html
```
---
## π Performance Benchmarks
### Pregnancy Risk Model
| Metric | Value |
|--------|-------|
| Training Accuracy | 100% |
| Validation Accuracy | 100% |
| Inference Time | <1ms |
| Model Size | 2.3MB |
| Features | 11 |
### Fetal Plane Model
| Metric | Value |
|--------|-------|
| Training Accuracy | 95.4% |
| Validation Accuracy | 91.69% |
| Inference Time | <100ms |
| Model Size | 346MB |
| Parameters | 86M |
### System Performance (M4 MacBook)
| Resource | Usage |
|----------|-------|
| CPU | 5.4% (idle) |
| Memory | 65.3% |
| GPU (MPS) | Active |
| Temperature | Stable |
---
## π Security & Privacy
### Data Protection
- **No Data Storage**: Patient data not permanently stored
- **Local Processing**: All inference runs locally
- **HIPAA Considerations**: Designed for privacy compliance
- **Secure Models**: No data leakage in model weights
### Recommendations
- Use in controlled medical environments
- Implement proper access controls
- Regular security audits
- Compliance with local regulations
---
## π― Clinical Applications
### Pregnancy Risk Assessment
- **Primary Care**: Initial risk screening
- **Obstetrics**: Prenatal care planning
- **Emergency**: Rapid risk evaluation
- **Telemedicine**: Remote consultations
### Ultrasound Classification
- **Radiology**: Image quality control
- **Training**: Medical education tool
- **Workflow**: Automated image sorting
- **Research**: Large-scale studies
---
## β οΈ Limitations & Disclaimers
### Model Limitations
- **Educational Purpose**: Not for clinical diagnosis
- **Validation Needed**: Requires clinical validation
- **Population Bias**: Trained on specific datasets
- **Continuous Learning**: Models need regular updates
### Usage Guidelines
- Always consult qualified healthcare professionals
- Use as decision support, not replacement
- Validate results with clinical judgment
- Report unusual predictions for review
---
## π Future Enhancements
### Planned Features
- **Multi-language Support**: International deployment
- **Real-time Monitoring**: Continuous risk assessment
- **Integration APIs**: EHR system connectivity
- **Advanced Models**: Transformer-based improvements
### Research Directions
- **Federated Learning**: Multi-site model training
- **Explainable AI**: Enhanced interpretability
- **Edge Deployment**: Mobile device optimization
- **Clinical Trials**: Prospective validation studies
---
## π Support & Contact
### Technical Support
- **Documentation**: This file and README files
- **Issues**: Check terminal logs for errors
- **Performance**: Monitor system resources
- **Updates**: Regular dependency updates
### Development Team
- **AI/ML Engineering**: Model development and optimization
- **Medical Informatics**: Clinical workflow integration
- **Software Engineering**: Application development
- **Quality Assurance**: Testing and validation
---
*Last Updated: January 2025*
*Version: 1.0*
*Platform: Apple Silicon Optimized* |