Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -18,13 +18,15 @@ def button2_callback():
|
|
18 |
placeholder = st.empty()
|
19 |
|
20 |
st.caption('_Examples_')
|
21 |
-
st.button('Kami menyimpulkan bahwa polimorfisme \@GENE
|
22 |
-
st.button('Genotipe bayi PON1 RR dan \@GENE
|
23 |
|
24 |
with placeholder:
|
25 |
text = st.text_area('Enter some text: ', key = 'options')
|
26 |
|
27 |
if text:
|
|
|
28 |
st.write(model(text))
|
29 |
st.write("\n")
|
|
|
30 |
st.write(basemodel(text))
|
|
|
18 |
placeholder = st.empty()
|
19 |
|
20 |
st.caption('_Examples_')
|
21 |
+
st.button('Kami menyimpulkan bahwa polimorfisme \@GENE\$ dan AGT tidak berkontribusi pada kerentanan genetik terhadap \@DISEASE\$ dan retinopati pada populasi Kaukasia Mediterania.', use_container_width=True, on_click = button1_callback)
|
22 |
+
st.button('Genotipe bayi PON1 RR dan \@GENE\$ CC dikaitkan dengan \@DISEASE\$ dalam populasi penelitian kami, yang menunjukkan kemungkinan peran variabilitas paraoxonase manusia dalam etiologi kelahiran prematur.', use_container_width=True, on_click = button2_callback)
|
23 |
|
24 |
with placeholder:
|
25 |
text = st.text_area('Enter some text: ', key = 'options')
|
26 |
|
27 |
if text:
|
28 |
+
st.subheader('MendoBERT')
|
29 |
st.write(model(text))
|
30 |
st.write("\n")
|
31 |
+
st.subheader('IndoLEM')
|
32 |
st.write(basemodel(text))
|