7jimmy commited on
Commit
6ce28c5
·
1 Parent(s): db22dbb

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +63 -0
app.py ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from streamlit.components.v1 import html
3
+ from transformers import BartForConditionalGeneration, BartTokenizer
4
+
5
+ # Function to add custom CSS for background styling
6
+ def set_background(style):
7
+ component = """
8
+ <style>
9
+ .stApp {
10
+ %s
11
+ }
12
+ </style>
13
+ """ % style
14
+ return html(component, height=0)
15
+
16
+ def summarize_data(data, max_length, model, tokenizer):
17
+ inputs = tokenizer.encode("summarize: " + data, return_tensors="pt", max_length=1024, truncation=True)
18
+ summary_ids = model.generate(inputs, max_length=max_length, min_length=max_length//4, length_penalty=2.0, num_beams=4, early_stopping=True)
19
+
20
+ summary = tokenizer.decode(summary_ids[0], skip_special_tokens=True)
21
+ return summary
22
+
23
+ def main():
24
+ # Set background style
25
+ set_background("""
26
+ background-image: url('https://your-image-url.jpg');
27
+ background-size: cover;
28
+ """)
29
+
30
+ # Title and description
31
+ st.title("Data Summarization")
32
+ st.write("Enter your data, set the summary length, and click submit.")
33
+
34
+ # Text input box
35
+ data = st.text_area("Enter your Data", height=200)
36
+
37
+ # Summary Length slider
38
+ max_length = st.slider("Summary Length", min_value=20, max_value=1000, step=1)
39
+
40
+ # Load the pretrained BART model and tokenizer
41
+ model_name = "facebook/bart-large-cnn"
42
+ model = BartForConditionalGeneration.from_pretrained(model_name)
43
+ tokenizer = BartTokenizer.from_pretrained(model_name)
44
+
45
+ # Submit button
46
+ if st.button("Submit"):
47
+ if not data:
48
+ st.warning("Please enter some data.")
49
+ else:
50
+ # Summarize data
51
+ result = summarize_data(data, max_length, model, tokenizer)
52
+
53
+ # Display result in a stylized output box
54
+ st.markdown(
55
+ f"<div style='background-color:#8c88f9; padding: 10px; border-radius: 10px;'>"
56
+ f"<h3>Your Summary</h3>"
57
+ f"<p>{result}</p>"
58
+ f"</div>",
59
+ unsafe_allow_html=True,
60
+ )
61
+
62
+ if __name__ == "__main__":
63
+ main()