Update app.py
Browse files
app.py
CHANGED
@@ -22,11 +22,11 @@ st_lottie(
|
|
22 |
|
23 |
)
|
24 |
|
25 |
-
st.write("**WARNING:
|
26 |
radio_btn1=st.radio("**Choose the newspaper you want to collect news from**",options=("Prothom Alo","The Daily Star"))
|
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
|
30 |
url = "https://drive.google.com/file/d/1lfIciJSOpK6e2YpuKg1efqomB3SgYN1C/view?usp=sharing"
|
31 |
|
32 |
if st.button("Generate Dataset"):
|
|
|
22 |
|
23 |
)
|
24 |
|
25 |
+
st.write("**WARNING: Please enter a small number (5-10) for testing purpose. Rule of thumb: GPT-4 and Llama-3 each takes 40 sec to process each entry.**")
|
26 |
radio_btn1=st.radio("**Choose the newspaper you want to collect news from**",options=("Prothom Alo","The Daily Star"))
|
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/1lfIciJSOpK6e2YpuKg1efqomB3SgYN1C/view?usp=sharing"
|
31 |
|
32 |
if st.button("Generate Dataset"):
|