Skip to content

Commit

Permalink
Merge pull request #43 from mikez/patch-1
Browse files Browse the repository at this point in the history
Update pdf_upload_summarization.ipynb
  • Loading branch information
alexalbertt committed May 6, 2024
2 parents 78ef000 + 6f4cfa8 commit 6f165d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misc/pdf_upload_summarization.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"\n",
"reader = PdfReader(\"2212.08073.pdf\")\n",
"number_of_pages = len(reader.pages)\n",
"text = ''.join([page.extract_text() for page in reader.pages])\n",
"text = ''.join(page.extract_text() for page in reader.pages)\n",
"print(text[:2155])"
]
},
Expand Down

0 comments on commit 6f165d6

Please sign in to comment.