Spaces:
Paused
Paused
move
Browse files
app.py
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Import convention
|
2 |
+
import streamlit as st
|
3 |
+
|
4 |
+
organ = st.selectbox('Organ', ['Brain', 'Thorax'], index=None)
|
5 |
+
modality = st.selectbox('Modality', ['Magnetic Resonance Imaging', 'Computed Tomography'], index=None)
|
6 |
+
style = st.selectbox('Style', ['Picasso', 'Van Gogh'], index=None)
|
7 |
+
|
8 |
+
prompt_lst = [organ, modality, style]
|
9 |
+
if None not in prompt_lst:
|
10 |
+
prompt = ','.join()
|
11 |
+
print(prompt)
|