Spaces:
Sleeping
Sleeping
File size: 742 Bytes
9c6c06e b56fb3d 9c6c06e b56fb3d 7619f11 b56fb3d 7619f11 b56fb3d 7619f11 |
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 |
import streamlit as st
SYMPTOMS = [
"Running nose",
"Fever",
"Headache",
"Dry cough",
"Wet cough",
"Shivering",
"Rigor",
]
st.title("Welcome to a PocketDoctor")
options = st.multiselect(
label="Label",
options=SYMPTOMS,
placeholder="Start writing your symptoms and then pick from the dropdown list",
label_visibility="hidden",
)
if st.button(label="Predict", use_container_width=True):
col1, col2, col3 = st.columns(3)
with col1:
st.write("### :red[Disease]")
st.write("##### Influenza")
with col2:
st.write("### :green[Medication]")
st.write("##### Ibuprophene")
with col3:
st.write("### :blue[Regime]")
st.write("##### Rest")
|