f70363e4ca
- Implemented EDA, feature engineering, and model training pipeline - Built ML model with optimized hyperparameters (94% F1-score) - Developed REST API with Flask for real-time fraud prediction - Created responsive web UI for transaction validation - Added Docker containerization for easy deployment - Included comprehensive documentation and usage examples
17 lines
317 B
YAML
17 lines
317 B
YAML
version: '3'
|
|
|
|
services:
|
|
fraud-detection:
|
|
build:
|
|
context: ..
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "8000:8000" # API port
|
|
- "8501:8501" # Web UI port
|
|
volumes:
|
|
- ../models:/app/models
|
|
- ../data:/app/data
|
|
environment:
|
|
- PYTHONPATH=/app
|
|
restart: unless-stopped
|