Soumen commited on
Commit
4d7ccde
·
1 Parent(s): dff86e7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +66 -78
app.py CHANGED
@@ -94,72 +94,72 @@ def main():
94
  def change_photo_state():
95
  st.session_state["photo"]="done"
96
  with st.container():
97
- c2, c3 = st.columns([1,1])
98
- message = st.text_input("Type your text here!")
99
- camera_photo = c2.camera_input("Capture a photo to summarize: ", on_change=change_photo_state)
100
- uploaded_photo = save(c3.file_uploader("Upload your Images/PDF",type=['jpg','png','jpeg','pdf'], on_change=change_photo_state))
101
- if st.session_state["photo"]=="done" or message:
102
- if uploaded_photo and uploaded_photo.type=='application/pdf':
103
- tet = read_pdf(uploaded_photo)
104
- # with tempfile.NamedTemporaryFile(delete=False) as temp_file:
105
- # temp_file.write(uploaded_photo.read())
106
- # temp_file_path = temp_file.name
107
-
108
- # loader = PyPDFLoader(temp_file_path)
109
- # if loader:
110
- # text.extend(loader.load())
111
- # os.remove(temp_file_path)
112
- # text_splitter = CharacterTextSplitter(separator="\n", chunk_size=1000, chunk_overlap=100, length_function=len)
113
- # text_chunks = text_splitter.split_documents(text)
114
- values = st.slider('Select a approximate number of lines to see and summarize',value=[0, len(tet)//(7*100)])
115
- text = tet[values[0]*7*10:values[1]*10*100] if values[0]!=len(tet)//(10*100) else tet[len(tet)//(10*100):]
116
- #st.success(type(text_chunks))
117
- if st.button("English Pdf Summarize"):
118
- st.subheader("Selected text for summarize: ")
119
- st.success(text)
120
- st.subheader("Summarized Text: ")
121
- engsum(text)
122
-
123
- elif uploaded_photo and uploaded_photo.type !='application/pdf':
124
- text=None
125
- img = Image.open(uploaded_photo)
126
- img = img.save("img.png")
127
- img = cv2.imread("img.png")
128
- st.text("Select the summarization type:")
129
- c4, c5 = st.columns([1,1])
130
- if c4.button("BENGALI"):
131
- text = pytesseract.image_to_string(img, lang="ben")
132
- st.subheader("সারাংশ/সারমর্ম")
133
- bansum(text)
134
- if c5.button("ENGLISH"):
135
- text=pytesseract.image_to_string(img)
136
- st.subheader("Summarized Text")
137
- engsum(text)
138
- #st.success(text)
139
- elif camera_photo:
140
- text=None
141
- img = Image.open(camera_photo)
142
- img = img.save("img.png")
143
- img = cv2.imread("img.png")
144
- #text = pytesseract.image_to_string(img) if st.checkbox("Bangla") else pytesseract.image_to_string(img, lang="ben")
145
- st.text("Select the summarization type:")
146
- c6, c7 = st.columns([1,1])
147
- if c6.button("Bangla"):
148
- text = pytesseract.image_to_string(img, lang="ben")
149
- st.subheader("সারাংশ/সারমর্ম")
150
- bansum(text)
151
- if c7.button("English"):
152
- text=pytesseract.image_to_string(img)
153
- st.subheader("Summarized Text")
154
- engsum(text)
155
- else:
156
- text=None
157
- text = message
158
- c8, c9 = st.columns([1,1])
159
- if c8.button("Bangla"):
160
- bansum(text)
161
- if c9.button("English"):
162
- engsum(text)
163
 
164
  with st.container():
165
  from streamlit_chat import message as st_message
@@ -193,18 +193,6 @@ def main():
193
  from copyreg import clear_extension_cache
194
  for chat in st.session_state.history:
195
  st_message(**chat)
196
- # if st.button("English Text Generation"):
197
- # def query(payload):
198
- # response = requests.post(API_URL2, headers=headers2, json=payload)
199
- # return response.json()
200
-
201
- # out = query({
202
- # "inputs": text,
203
- # })
204
- # if isinstance(out, list) and out[0].get("generated_text"):
205
- # text_output = out[0]["generated_text"]
206
- # st.success(text_output)
207
- # #text=text_output
208
 
209
 
210
  if __name__ == "__main__":
 
94
  def change_photo_state():
95
  st.session_state["photo"]="done"
96
  with st.container():
97
+ c2, c3 = st.columns([1,1])
98
+ message = st.text_input("Type your text here!")
99
+ camera_photo = c2.camera_input("Capture a photo to summarize: ", on_change=change_photo_state)
100
+ uploaded_photo = save(c3.file_uploader("Upload your Images/PDF",type=['jpg','png','jpeg','pdf'], on_change=change_photo_state))
101
+ if st.session_state["photo"]=="done" or message:
102
+ if uploaded_photo and uploaded_photo.type=='application/pdf':
103
+ tet = read_pdf(uploaded_photo)
104
+ # with tempfile.NamedTemporaryFile(delete=False) as temp_file:
105
+ # temp_file.write(uploaded_photo.read())
106
+ # temp_file_path = temp_file.name
107
+
108
+ # loader = PyPDFLoader(temp_file_path)
109
+ # if loader:
110
+ # text.extend(loader.load())
111
+ # os.remove(temp_file_path)
112
+ # text_splitter = CharacterTextSplitter(separator="\n", chunk_size=1000, chunk_overlap=100, length_function=len)
113
+ # text_chunks = text_splitter.split_documents(text)
114
+ values = st.slider('Select a approximate number of lines to see and summarize',value=[0, len(tet)//(7*100)])
115
+ text = tet[values[0]*7*10:values[1]*10*100] if values[0]!=len(tet)//(10*100) else tet[len(tet)//(10*100):]
116
+ #st.success(type(text_chunks))
117
+ if st.button("English Pdf Summarize"):
118
+ st.subheader("Selected text for summarize: ")
119
+ st.success(text)
120
+ st.subheader("Summarized Text: ")
121
+ engsum(text)
122
+
123
+ elif uploaded_photo and uploaded_photo.type !='application/pdf':
124
+ text=None
125
+ img = Image.open(uploaded_photo)
126
+ img = img.save("img.png")
127
+ img = cv2.imread("img.png")
128
+ st.text("Select the summarization type:")
129
+ c4, c5 = st.columns([1,1])
130
+ if c4.button("BENGALI"):
131
+ text = pytesseract.image_to_string(img, lang="ben")
132
+ st.subheader("সারাংশ/সারমর্ম")
133
+ bansum(text)
134
+ if c5.button("ENGLISH"):
135
+ text=pytesseract.image_to_string(img)
136
+ st.subheader("Summarized Text")
137
+ engsum(text)
138
+ #st.success(text)
139
+ elif camera_photo:
140
+ text=None
141
+ img = Image.open(camera_photo)
142
+ img = img.save("img.png")
143
+ img = cv2.imread("img.png")
144
+ #text = pytesseract.image_to_string(img) if st.checkbox("Bangla") else pytesseract.image_to_string(img, lang="ben")
145
+ st.text("Select the summarization type:")
146
+ c6, c7 = st.columns([1,1])
147
+ if c6.button("Bangla"):
148
+ text = pytesseract.image_to_string(img, lang="ben")
149
+ st.subheader("সারাংশ/সারমর্ম")
150
+ bansum(text)
151
+ if c7.button("English"):
152
+ text=pytesseract.image_to_string(img)
153
+ st.subheader("Summarized Text")
154
+ engsum(text)
155
+ else:
156
+ text=None
157
+ text = message
158
+ c8, c9 = st.columns([1,1])
159
+ if c8.button("Bangla"):
160
+ bansum(text)
161
+ if c9.button("English"):
162
+ engsum(text)
163
 
164
  with st.container():
165
  from streamlit_chat import message as st_message
 
193
  from copyreg import clear_extension_cache
194
  for chat in st.session_state.history:
195
  st_message(**chat)
 
 
 
 
 
 
 
 
 
 
 
 
196
 
197
 
198
  if __name__ == "__main__":