devve1 commited on
Commit
4eb079e
1 Parent(s): b40229f

Update ppt_chunker.py

Browse files
Files changed (1) hide show
  1. ppt_chunker.py +3 -0
ppt_chunker.py CHANGED
@@ -143,6 +143,9 @@ def ppt_chunk(file_like, nlp):
143
 
144
  if i == len(chunk) - 1:
145
  weakDict.insert(chunk[0], "\n".join([c[1] for c in chunk[1]]), metadata_main_title, metadata_sub_title)
 
 
 
146
 
147
  et = time.time()
148
  ft = et - s
 
143
 
144
  if i == len(chunk) - 1:
145
  weakDict.insert(chunk[0], "\n".join([c[1] for c in chunk[1]]), metadata_main_title, metadata_sub_title)
146
+
147
+ for w in weakDict.all_texts():
148
+ print(f'AFTER : {w}')
149
 
150
  et = time.time()
151
  ft = et - s