Searches an open-access repository of scientific preprints and returns paper metadata.
searchpassing, 1.1s/v1/search-tools:arxiv/search5m cache3 paramschecking key…// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";
const client = new ZpiClient({ apiKey: "zpi_xxxxxxxxxxxxxxxxxxxxxxxx" });
const data = await client.run("search-tools:arxiv", "search", {
"query": "transformer",
"count": 10,
"page": 1
});
console.log(data);curl -X GET "https://api.zpi.web.id/v1/search-tools:arxiv/search?query=transformer&count=10&page=1" \
-H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"/v1/search-tools:arxiv/searchReturns matching preprints with titles, authors, abstracts, and links for a query.querystringrequiredcountnumberoptionalpagenumberoptionalcurl -X GET "https://api.zpi.web.id/v1/search-tools:arxiv/search?query=transformer&count=10&page=1" \
-H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"{
"page": 1,
"count": 5,
"items": [
{
"url": "http://arxiv.org/abs/2201.00978v1",
"title": "PyramidTNT: Improved Transformer-in-Transformer Baselines with Pyramid Architecture",
"pdfUrl": "https://arxiv.org/pdf/2201.00978v1",
"source": "arxiv.org",
"authors": [
"Kai Han",
"Jianyuan Guo",
"Yehui Tang"
],
"summary": "Transformer networks have achieved great progress for computer vision tasks. Transformer-in-Transformer (TNT) architecture utilizes inner transformer and outer transformer to extra…",
"publishedAt": "2022-01-04T04:56:57Z"
},
{
"url": "http://arxiv.org/abs/2104.11502v1",
"title": "Learning to Cluster Faces via Transformer",
"pdfUrl": "https://arxiv.org/pdf/2104.11502v1",
"source": "arxiv.org",
"authors": [
"Jinxing Ye",
"Xioajiang Peng",
"Baigui Sun"
],
"summary": "Face clustering is a useful tool for applications like automatic face annotation and retrieval. The main challenge is that it is difficult to cluster images from the same identity …",
"publishedAt": "2021-04-23T09:43:36Z"
},
{
"url": "http://arxiv.org/abs/2404.05657v1",
"title": "MLP Can Be A Good Transformer Learner",
"pdfUrl": "https://arxiv.org/pdf/2404.05657v1",
"source": "arxiv.org",
"authors": [
"Sihao Lin",
"Pumeng Lyu",
"Dongrui Liu"
],
"summary": "Self-attention mechanism is the key of the Transformer but often criticized for its computation demands. Previous token pruning works motivate their methods from the view of comput…",
"publishedAt": "2024-04-08T16:40:15Z"
}
],
"total": 174551,
"hasMore": true,
"nextPage": 2
}