abhisheky127 commited on
Commit
bd0a70f
1 Parent(s): 5028fb3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -6,7 +6,7 @@ model_path = "abhisheky127/FeedbackSummarizerEnterpret"
6
 
7
  summarizer = pipeline("summarization", model=model_path)
8
 
9
- st.title("Feedback Summarizer: Enterpret")
10
  st.markdown(
11
  """
12
  #### Summarize reviews/feedbacks with fine-tuned T5-small language Model
@@ -17,7 +17,7 @@ st.markdown(
17
 
18
  text = "<product>zoom</product><type>Appstore/Playstore</type><text>user: this is very successful meeting business</text>"
19
  pred = summarizer(text)
20
- pred
21
 
22
  # file_name = st.file_uploader("Upload a hot dog candidate image")
23
 
 
6
 
7
  summarizer = pipeline("summarization", model=model_path)
8
 
9
+ st.title("Feedback Summarizer: Enterpret")
10
  st.markdown(
11
  """
12
  #### Summarize reviews/feedbacks with fine-tuned T5-small language Model
 
17
 
18
  text = "<product>zoom</product><type>Appstore/Playstore</type><text>user: this is very successful meeting business</text>"
19
  pred = summarizer(text)
20
+ st.write(pred)
21
 
22
  # file_name = st.file_uploader("Upload a hot dog candidate image")
23