Spaces:
Sleeping
A newer version of the Streamlit SDK is available:
1.44.1
title: Medi Scape
emoji: 🔥
colorFrom: purple
colorTo: blue
sdk: streamlit
sdk_version: 1.37.1
app_file: frontend/app.py
pinned: false
license: apache-2.0
Medi Scape
Medi Scape is an AI-powered healthcare application designed to streamline the process of understanding and managing medical information. It leverages advanced AI models to provide features such as prescription analysis, disease detection from chest X-rays, and symptom-based diagnosis assistance.
Demo
A live demo of the application is available at: https://huggingface.co/spaces/DjPapzin/Medi-Scape
Project Structure
frontend
: Contains the Streamlit frontend code.app_docr.py
: Contains code for doctor's handwriting detection and OCR.app.py
: Contains code for disease detection and classification.Symptoms Detection\app.py
: Contains code for symptom detection, precaution, and occurrence.requirements.txt
: Lists the required Python packages.
Getting Started
Prerequisites
- Python 3.x
- Streamlit
Installation
Clone the repository:
git clone https://github.com/r7projects-shayan/falcon-hackathon.git cd falcon-hackathon
Install the required packages:
pip install -r requirements.txt
Setup environment variables:
cp .env.example .env
- Update the
.env
file with your AI71 API key and Roboflow API key.
- Update the
Running the Applications
Frontend (Main Dashboard):
cd frontend streamlit run app.py
Streamlit server will start at: http://localhost:8501
Doctor's Handwriting Detection and OCR:
streamlit run app_docr.py
Disease Detection and Classification:
streamlit run app.py
Symptom Detection:
cd Symptoms Detection streamlit run app.py
AI71 Basic Chat Functionality
This project includes basic chat functionality using the AI71 platform. This feature allows users to interact with an AI chatbot for various purposes, such as answering questions or providing assistance.
How to Use
- Start the application (
frontend\app.py
). - Navigate to the "AI Chatbot Diagnosis" page.
- Type your questions or messages.
- Receive responses from the AI71-powered chatbot.
Requirements
Doctor's Handwriting Identification and OCR
This project includes functionality to identify and process doctor's handwriting from prescription images. It uses an AI model to detect bounding boxes around handwritten text and classify each character. The classified characters are then combined to form the extracted text, which is further processed by an OCR model to convert it into digital text.
How to Use
- Start the application (
app_docr.py
). - Upload a prescription image.
- The application will display the processed image with bounding boxes and labels, along with the extracted digital text.
Requirements
- Roboflow API Key (set in environment variables)
Disease Detection and Classification
This project includes functionality to detect diseases from chest X-ray images using a pre-trained deep learning model.
How to Use
- Start the application (
app.py
). - Upload a chest X-ray image.
- The application will display the image and the predicted disease class.
Requirements
FINAL_MODEL.keras
(ensure it's in the same directory asapp.py
)
Symptom Detection, Precaution, and Occurrence
This project includes functionality to detect diseases based on user-entered symptoms. It also provides precautions and occurrence information for the detected disease.
How to Use
- Start the application (
Symptoms Detection\app.py
). - Enter your symptoms, separated by commas.
- The application will display the predicted disease, precautions, and occurrence information.
Requirements
training_data.csv
,Symptom2Disease.csv
,disease_precaution.csv
,disease_riskFactors.csv
(ensure these files are in theSymptoms Detection
directory)
Contributing
Feel free to fork this repository and submit pull requests. For major changes, please open an issue first to discuss what you would like to change.
License
This project is licensed under the MIT License - see the LICENSE file for details.