Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,47 +1,22 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
-
sdk:
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
- streamlit
|
| 10 |
pinned: false
|
| 11 |
-
short_description: A simple health symptom tracker.
|
| 12 |
license: mit
|
| 13 |
---
|
| 14 |
|
| 15 |
-
#
|
| 16 |
|
| 17 |
-
|
|
|
|
|
|
|
| 18 |
|
| 19 |
-
|
| 20 |
-
forums](https://discuss.streamlit.io).
|
| 21 |
-
|
| 22 |
-
# 🩺 Symptom Tracker & Risk Predictor
|
| 23 |
-
|
| 24 |
-
A simple health symptom tracker built with **Streamlit** and deployed on **Hugging Face Spaces**.
|
| 25 |
-
It allows users to enter their symptoms and vitals, then gives a **risk score** for common conditions like:
|
| 26 |
-
- Type 2 Diabetes
|
| 27 |
-
- Hypertension
|
| 28 |
-
- Depression/Mood Issues
|
| 29 |
-
- Migraine
|
| 30 |
-
- Sleep Apnea
|
| 31 |
-
- Anemia
|
| 32 |
-
|
| 33 |
-
## 🚀 Demo
|
| 34 |
-
Try the app live here 👉 [Hugging Face Space](your-space-link)
|
| 35 |
-
|
| 36 |
-
## 🛠️ Tech Stack
|
| 37 |
-
- Python
|
| 38 |
-
- Streamlit
|
| 39 |
-
- Hugging Face Spaces
|
| 40 |
-
- Scikit-learn (for ML model)
|
| 41 |
-
|
| 42 |
-
## ⚡ How to Run Locally
|
| 43 |
```bash
|
| 44 |
-
git clone https://huggingface.co/spaces/your-username/symptom-tracker
|
| 45 |
-
cd symptom-tracker
|
| 46 |
pip install -r requirements.txt
|
| 47 |
streamlit run app.py
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Symptom Tracker
|
| 3 |
+
emoji: 🧠
|
| 4 |
+
colorFrom: indigo
|
| 5 |
+
colorTo: green
|
| 6 |
+
sdk: streamlit
|
| 7 |
+
sdk_version: "1.36.0"
|
| 8 |
+
app_file: app.py
|
|
|
|
| 9 |
pinned: false
|
|
|
|
| 10 |
license: mit
|
| 11 |
---
|
| 12 |
|
| 13 |
+
# 🩺 Symptom Tracker & Risk Dashboard
|
| 14 |
|
| 15 |
+
A Streamlit app to capture vitals/symptoms and produce interpretable risk flags
|
| 16 |
+
(Type 2 Diabetes, Hypertension, Depression/Mood, Migraine, Sleep Apnea, Anemia).
|
| 17 |
+
**Educational demo only — not medical advice.**
|
| 18 |
|
| 19 |
+
## Run locally
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
```bash
|
|
|
|
|
|
|
| 21 |
pip install -r requirements.txt
|
| 22 |
streamlit run app.py
|