Update app.py
Browse files
app.py
CHANGED
@@ -27,7 +27,7 @@ radio_btn1=st.radio("**Choose the newspaper you want to collect news from**",opt
|
|
27 |
radio_btn2=st.radio("**Choose an LLM model**",options=("GPT-4 (High Cost)","Llama3 (Free)"))
|
28 |
|
29 |
number = st.number_input("**Enter the number of accident news you want the LLM to go through (Maximum 20)**",min_value=0,max_value=20)
|
30 |
-
url = "https://
|
31 |
|
32 |
if st.button("Generate Dataset"):
|
33 |
st.write("**Please wait while the dataset is being generated. Note that, 'General' accident news reports will be excluded from the dataset. To know more, please read this paper:** [link](%s)" % url)
|
@@ -63,6 +63,8 @@ st.write("""
|
|
63 |
""")
|
64 |
|
65 |
|
|
|
|
|
66 |
st.write("--------")
|
67 |
st.write("**Modules and packages used to develop the program:**")
|
68 |
|
|
|
27 |
radio_btn2=st.radio("**Choose an LLM model**",options=("GPT-4 (High Cost)","Llama3 (Free)"))
|
28 |
|
29 |
number = st.number_input("**Enter the number of accident news you want the LLM to go through (Maximum 20)**",min_value=0,max_value=20)
|
30 |
+
url = "https://ieeexplore.ieee.org/document/11021969"
|
31 |
|
32 |
if st.button("Generate Dataset"):
|
33 |
st.write("**Please wait while the dataset is being generated. Note that, 'General' accident news reports will be excluded from the dataset. To know more, please read this paper:** [link](%s)" % url)
|
|
|
63 |
""")
|
64 |
|
65 |
|
66 |
+
st.write("--------")
|
67 |
+
st.write("**IF YOU ARE BENEFITED FROM THIS WORK, PLEASE GIVE OUR PAPER A CITE:** [paper link](%s)" % url)
|
68 |
st.write("--------")
|
69 |
st.write("**Modules and packages used to develop the program:**")
|
70 |
|