domro11 commited on
Commit
5aa077f
·
1 Parent(s): 6f3fdbc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -87,10 +87,10 @@ def main():
87
  elif choice=="Keyword Extractor":
88
  st.subheader("Keyword Extraction")
89
  #loading the pipeline
90
- model_name = "yanekyuk/bert-uncased-keyword"
91
- keyword_extractor = pipeline("text2text-generation", model=model_name, tokenizer=model_name, config={"wordwise": True})
92
- input_text = st.text_area("Enter some text:")
93
-
94
  if st.button("Extract Keywords"):
95
  # Extract keywords using the model
96
  keywords = keyword_extractor(input_text, max_length=20, do_sample=False)[0]["generated_text"]
 
87
  elif choice=="Keyword Extractor":
88
  st.subheader("Keyword Extraction")
89
  #loading the pipeline
90
+ model_name = "yanekyuk/bert-uncased-keyword"
91
+ keyword_extractor = pipeline("text2text-generation", model=model_name, tokenizer=model_name, config={"wordwise": True})
92
+ input_text = st.text_area("Enter some text:")
93
+
94
  if st.button("Extract Keywords"):
95
  # Extract keywords using the model
96
  keywords = keyword_extractor(input_text, max_length=20, do_sample=False)[0]["generated_text"]