Thamed-Chowdhury commited on
Commit
2ea33ad
·
verified ·
1 Parent(s): d5d9f98

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -24,12 +24,12 @@ st_lottie(
24
 
25
 
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-3.5 (Medium Cost)","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 50)**",min_value=0,max_value=50)
30
 
31
  if st.button("Generate Dataset"):
32
- st.write("**Please wait until the datasest is finished generating. It takes almost 8 sec to process each entry for GPT-4 and 30 sec for GPT-3.5 and Llama3. So, for example, if you entered 15 as input, it will take almost 2 minutes for GPT-4 and 7.5 min for GPT-3.5 and Llama3. The dataset will appear below.**")
33
 
34
  if radio_btn1=="Prothom Alo":
35
  import Prothom_alo_fully_scraped
 
24
 
25
 
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)","GPT-3.5 (Medium Cost + Long Waiting Time)"))
28
 
29
  number = st.number_input("**Enter the number of accident news you want the LLM to go through (Maximum 50)**",min_value=0,max_value=50)
30
 
31
  if st.button("Generate Dataset"):
32
+ st.write("** WARNING: GPT-3.5 takes very long time to process. So, please be patient. Other LLMs (GPT-4 and Llama-3) take moderate amount of time. We suggest entering a small value (1-10) for testing purpose.**")
33
 
34
  if radio_btn1=="Prothom Alo":
35
  import Prothom_alo_fully_scraped