Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions 06-DocumentLoader/10-ArxivLoader.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,18 @@
"\n",
"## Overview\n",
"\n",
"[arXiv](https://arxiv.org/) is an open access archive for 2 million scholarly articles in the fields of physics, \n",
"[`arXiv`](https://arxiv.org/) is an open access archive for 2 million scholarly articles in the fields of physics, \n",
"\n",
"mathematics, computer science, quantitative biology, quantitative finance, statistics, electrical engineering and systems \n",
"\n",
"science, and economics.\n",
"\n",
"[![API Documentation](https://img.shields.io/badge/API%20Documentation-arXiv-blue)](https://info.arxiv.org/help/api/index.html)\n",
"[API Documentation](https://api.python.langchain.com/en/latest/document_loaders/langchain_community.document_loaders.arxiv.ArxivLoader.html#langchain_community.document_loaders.arxiv.ArxivLoader)\n",
"\n",
"\n",
"To access the Arxiv document loader, you need to install `arxiv`, `PyMuPDF` and `langchain-community` integration packages.\n",
"\n",
"PyMuPDF converts PDF files downloaded from arxiv.org into text format.\n",
"`PyMuPDF` converts PDF files downloaded from arxiv.org into text format.\n",
"\n",
"\n",
"### Table of Contents\n",
Expand All @@ -44,7 +45,9 @@
"### References\n",
"\n",
"- [ArxivLoader API Documentation](https://python.langchain.com/api_reference/community/document_loaders/langchain_community.document_loaders.arxiv.ArxivLoader.html#langchain_community.document_loaders.arxiv.ArxivLoader)\n",
"- [Arxiv API Acess Documentation](https://info.arxiv.org/help/api/index.html)"
"- [Arxiv API Acess Documentation](https://info.arxiv.org/help/api/index.html)\n",
"\n",
"---"
]
},
{
Expand All @@ -69,7 +72,7 @@
"outputs": [],
"source": [
"%%capture --no-stderr\n",
"!pip install langchain-opentutorial"
"%pip install langchain-opentutorial"
]
},
{
Expand Down Expand Up @@ -113,7 +116,7 @@
"You can make arxiv loader instance to load documents from arxiv.org.\n",
"\n",
"Initialize with search query to find documents in the Arixiv.org.\n",
"Supports all arguments of `ArxivAPIWrapper`."
"Supports all arguments of `ArxivAPIWrapper` ."
]
},
{
Expand All @@ -140,7 +143,7 @@
"source": [
"### Load\n",
"\n",
"Use `Load` method to load documents from arxiv.org. with ArxivLoader instance."
"Use `Load` method to load documents from arxiv.org with `ArxivLoader` instance."
]
},
{
Expand Down Expand Up @@ -336,4 +339,4 @@
},
"nbformat": 4,
"nbformat_minor": 5
}
}
Loading