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://drive.google.com/file/d/
|
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)
|
@@ -54,13 +54,13 @@ if st.button("Generate Dataset"):
|
|
54 |
print(len(df))
|
55 |
|
56 |
|
57 |
-
|
58 |
-
|
59 |
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
|
65 |
|
66 |
st.write("--------")
|
|
|
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://drive.google.com/file/d/1WvEgAhNHds_Mn2j8SQzdv-9HBXM_BSMD/view?usp=sharing"
|
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)
|
|
|
54 |
print(len(df))
|
55 |
|
56 |
|
57 |
+
st.write("""
|
58 |
+
**Developed by:**\n
|
59 |
|
60 |
+
*MD Thamed Bin Zaman Chowdhury, Student ID: 1904184,*\n
|
61 |
+
*Department of Civil Engineering, BUET*\n
|
62 |
+
*E-mail: [email protected]*
|
63 |
+
""")
|
64 |
|
65 |
|
66 |
st.write("--------")
|