zotero-db/translators/OpenAlex JSON.js

741 lines
166 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"translatorID": "faa53754-fb55-4658-9094-ae8a7e0409a2",
"translatorType": 1,
"label": "OpenAlex JSON",
"creator": "Sebastian Karcher",
"target": "json",
"minVersion": "5.0",
"maxVersion": null,
"priority": 100,
"inRepository": true,
"lastUpdated": "2024-07-30 14:55:00"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2024 Sebastian Karcher
This file is part of Zotero.
Zotero is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Zotero is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
***** END LICENSE BLOCK *****
*/
// copied from CSL JSON
function parseInput() {
var str, json = "";
// Read in the whole file at once, since we can't easily parse a JSON stream. The
// chunk size here is pretty arbitrary, although larger chunk sizes may be marginally
// faster. We set it to 1MB.
while ((str = Z.read(1048576)) !== false) json += str;
try {
return JSON.parse(json);
}
catch (e) {
Zotero.debug(e);
return false;
}
}
function detectImport() {
var parsedData = parseInput();
// Z.debug(parsedData.ids)
if (parsedData && parsedData.ids && parsedData.ids.openalex) {
return true;
}
else if (parsedData && parsedData.results && parsedData.results[0].ids && parsedData.results[0].ids.openalex) {
return true;
}
return false;
}
/* eslint-disable camelcase*/
var PDFversionMap = {
submittedVersion: "Submitted Version PDF",
acceptedVersion: "Accepted Version PDF",
publishedVersion: "Full Text PDF"
};
/* eslint-disable camelcase*/
/* https://docs.openalex.org/api-entities/works/work-object#type */
var mappingTypes = {
article: "journalArticle",
book: "book",
"book-chapter": "bookSection",
dissertation: "thesis",
other: "document",
report: "report",
paratext: "document",
dataset: "dataset",
"reference-entry": "encyclopediaArticle",
standard: "standard",
editorial: "journalArticle",
letter: "journalArticle",
"peer-review": "document", // up for debate
erratum: "journalArticle",
grant: "manuscript", // up for debate
preprint: "preprint",
review: "journalArticle",
libguides: "encyclopediaArticle",
"supplementary-materials": "journalArticle",
retraction: "journalArticle",
};
function doImport() {
var data = parseInput();
if (data.ids) {
parseIndividual(data);
}
else {
let results = data.results;
for (let result of results) {
parseIndividual(result);
}
}
}
function parseIndividual(data) {
let OAtype = data.type;
// Z.debug(OAtype)
let type = mappingTypes[OAtype] || "document";
var item = new Zotero.Item(type);
item.title = data.title;
// fix all caps titles
if (item.title == item.title.toUpperCase()) {
item.title = ZU.capitalizeTitle(item.title, true);
}
item.date = data.publication_date;
item.language = data.language;
if (data.doi) {
item.DOI = ZU.cleanDOI(data.doi);
}
if (data.primary_location.source) {
let sourceName = data.primary_location.source.display_name;
if (item.itemType == "thesis" || item.itemType == "dataset") {
item.publisher = sourceName;
}
else if (item.itemType == "book") {
item.publisher = data.primary_location.source.host_organization_name;
}
else {
item.publicationTitle = sourceName;
item.publisher = data.primary_location.source.host_organization_name;
}
if (typeof data.primary_location.source.issn === 'string') {
item.ISSN = data.primary_location.source.issn;
}
else if (Array.isArray(data.primary_location.source.issn)) {
item.ISSN = data.primary_location.source.issn[0];
}
if (data.primary_location.source.type == "journal") {
Zotero.debug(`Item type was ${item.itemType} -- changing to journalArticle because source.type == 'journal'`);
item.itemType = "journalArticle";
}
else if (data.primary_location.source.type == "conference") {
Zotero.debug(`Item type was ${item.itemType} -- changing to conferencePaper because source.type == 'conference'`);
item.itemType = "conferencePaper";
}
if (data.primary_location.version == "submittedVersion") {
Zotero.debug(`Item type was ${item.itemType} -- changing to preprint because version == 'submittedVersion'`);
item.itemType = "preprint";
}
}
let biblio = data.biblio;
item.issue = biblio.issue;
item.volume = biblio.volume;
if (biblio.first_page && biblio.last_page && biblio.first_page != biblio.last_page) {
item.pages = biblio.first_page + "-" + biblio.last_page;
}
else if (biblio.first_page) {
item.pages = biblio.first_page;
}
let authors = data.authorships;
for (let author of authors) {
let authorName = author.author.display_name;
item.creators.push(ZU.cleanAuthor(authorName, "author", false));
}
if (item.itemType == "thesis" && !item.publisher & authors.length) {
// use author affiliation as university
item.university = authors[0].raw_affiliation_string;
}
if (data.best_oa_location && data.best_oa_location.pdf_url) {
let version = "Submitted Version PDF";
if (data.best_oa_location.version) {
version = PDFversionMap[data.best_oa_location.version];
}
item.attachments.push({ url: data.best_oa_location.pdf_url, title: version, mimeType: "application/pdf" });
}
let tags = data.keywords;
for (let tag of tags) {
item.tags.push(tag.display_name || tag.keyword);
}
item.extra = "OpenAlex: " + data.ids.openalex;
item.complete();
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "import",
"input": "{\r\n \"id\": \"https://openalex.org/W2099326003\",\r\n \"doi\": \"https://doi.org/10.2307/1885099\",\r\n \"title\": \"Labor Contracts as Partial Gift Exchange\",\r\n \"display_name\": \"Labor Contracts as Partial Gift Exchange\",\r\n \"publication_year\": 1982,\r\n \"publication_date\": \"1982-11-01\",\r\n \"ids\": {\r\n \"openalex\": \"https://openalex.org/W2099326003\",\r\n \"doi\": \"https://doi.org/10.2307/1885099\",\r\n \"mag\": \"2099326003\"\r\n },\r\n \"language\": \"en\",\r\n \"primary_location\": {\r\n \"is_oa\": false,\r\n \"landing_page_url\": \"https://doi.org/10.2307/1885099\",\r\n \"pdf_url\": null,\r\n \"source\": {\r\n \"id\": \"https://openalex.org/S203860005\",\r\n \"display_name\": \"The Quarterly Journal of Economics\",\r\n \"issn_l\": \"0033-5533\",\r\n \"issn\": [\r\n \"0033-5533\",\r\n \"1531-4650\"\r\n ],\r\n \"is_oa\": false,\r\n \"is_in_doaj\": false,\r\n \"host_organization\": \"https://openalex.org/P4310311648\",\r\n \"host_organization_name\": \"Oxford University Press\",\r\n \"host_organization_lineage\": [\r\n \"https://openalex.org/P4310311647\",\r\n \"https://openalex.org/P4310311648\"\r\n ],\r\n \"host_organization_lineage_names\": [\r\n \"University of Oxford\",\r\n \"Oxford University Press\"\r\n ],\r\n \"type\": \"journal\"\r\n },\r\n \"license\": null,\r\n \"version\": null,\r\n \"is_accepted\": false,\r\n \"is_published\": false\r\n },\r\n \"type\": \"article\",\r\n \"type_crossref\": \"journal-article\",\r\n \"indexed_in\": [\r\n \"crossref\"\r\n ],\r\n \"open_access\": {\r\n \"is_oa\": false,\r\n \"oa_status\": \"closed\",\r\n \"oa_url\": null,\r\n \"any_repository_has_fulltext\": false\r\n },\r\n \"authorships\": [\r\n {\r\n \"author_position\": \"first\",\r\n \"author\": {\r\n \"id\": \"https://openalex.org/A5081873388\",\r\n \"display_name\": \"George A. Akerlof\",\r\n \"orcid\": null\r\n },\r\n \"institutions\": [\r\n {\r\n \"id\": \"https://openalex.org/I95457486\",\r\n \"display_name\": \"University of California, Berkeley\",\r\n \"ror\": \"https://ror.org/01an7q238\",\r\n \"country_code\": \"US\",\r\n \"type\": \"education\",\r\n \"lineage\": [\r\n \"https://openalex.org/I2803209242\",\r\n \"https://openalex.org/I95457486\"\r\n ]\r\n }\r\n ],\r\n \"countries\": [\r\n \"US\"\r\n ],\r\n \"is_corresponding\": true,\r\n \"raw_author_name\": \"George A. Akerlof\",\r\n \"raw_affiliation_string\": \"University of California, Berkeley\",\r\n \"raw_affiliation_strings\": [\r\n \"University of California, Berkeley\"\r\n ]\r\n }\r\n ],\r\n \"countries_distinct_count\": 1,\r\n \"institutions_distinct_count\": 1,\r\n \"corresponding_author_ids\": [\r\n \"https://openalex.org/A5081873388\"\r\n ],\r\n \"corresponding_institution_ids\": [\r\n \"https://openalex.org/I95457486\"\r\n ],\r\n \"apc_list\": {\r\n \"value\": 6977,\r\n \"currency\": \"USD\",\r\n \"value_usd\": 6977,\r\n \"provenance\": \"doaj\"\r\n },\r\n \"apc_paid\": {\r\n \"value\": 6977,\r\n \"currency\": \"USD\",\r\n \"value_usd\": 6977,\r\n \"provenance\": \"doaj\"\r\n },\r\n \"has_fulltext\": true,\r\n \"fulltext_origin\": \"ngrams\",\r\n \"cited_by_count\": 2786,\r\n \"cited_by_percentile_year\": {\r\n \"min\": 99,\r\n \"max\": 100\r\n },\r\n \"biblio\": {\r\n \"volume\": \"97\",\r\n \"issue\": \"4\",\r\n \"first_page\": \"543\",\r\n \"last_page\": \"543\"\r\n },\r\n \"is_retracted\": false,\r\n \"is_paratext\": false,\r\n \"primary_topic\": {\r\n \"id\": \"https://openalex.org/T10208\",\r\n \"display_name\": \"Labor Market Dynamics and Inequality\",\r\n \"score\": 0.9877,\r\n \"subfield\": {\r\n \"id\": \"https://openalex.org/subfields/2002\",\r\n \"display_name\": \"Economics and Econometrics\"\r\n },\r\n \"field\": {\r\n \"id\": \"https://openalex.org/fields/20\",\r\n \"display_name\": \"Economics, Econometrics and Finance\"\r\n },\r\n \"domain\": {\r\n \"id\": \"https://openalex.org/domains/2\",\r\n \"display_name\": \"Social Sciences\"\r\n }\r\n },\r\n \"topics\": [\r\n {\r\n \"id\": \"https://openalex.org/T10208\",\r\n \"display_name\": \"Labor Market Dynamics and Inequality\",\r\n \"score\": 0.9877,\r\n \"subfield\": {\r\n \"id\": \"https://openalex.org/subfields/2002\",\r\n \"display_name\": \"Economics and Econometrics\"\r\n },\r\n \"field\": {\r\n \"id\": \"https://openalex.org/fields/20\",\r\n \"display_name\": \"Economics, Econometrics and Finance\"\r\n },\r\n \"domain\": {\r\n \"id\": \"https://openalex.org/domains/2\",\r\n \"display_name\": \"Social Sciences\"\r\n }\r\n },\r\n {\r\n \"id\": \"https://openalex.org/T12137\",\r\n \"display_name\": \"Existence and Dynamics of Monetary Equilibrium Models\",\r\n \"score\": 0.9857,\r\n \"subfield\": {\r\n \"id\": \"https://openalex.org/subfields/2002\",\r\n \"display_name\": \"Economics and Econometrics\"\r\n },\r\n \"field\": {\r\n \"id\": \"https://openalex.org/fields/20\",\r\n \"display_name\": \"Economics, Econometrics and Finance\"\r\n },\r\n \"domain\": {\r\n \"id\": \"https://openalex.org/domains/2\",\r\n \"display_name\": \"Social Sciences\"\r\n }\r\n },\r\n {\r\n \"id\": \"https://openalex.org/T11743\",\r\n \"display_name\": \"Critique of Political Economy and Capitalist Development\",\r\n \"score\": 0.9847,\r\n \"subfield\": {\r\n \"id\": \"https://openalex.org/subfields/3312\",\r\n \"display_name\": \"Sociology and Political Science\"\r\n },\r\n \"field\": {\r\n \"id\": \"https://openalex.org/fields/33\",\r\n \"display_name\": \"Social Sciences\"\r\n },\r\n \"domain\": {\r\n \"id\": \"https://openalex.org/domains/2\",\r\n \"display_name\": \"Social Sciences\"\r\n }\r\n }\r\n ],\r\n \"keywords\": [\r\n {\r\n \"keyword\": \"labor\",\r\n \"score\": 0.4433\r\n },\r\n {\r\n \"keyword\": \"exchange\",\r\n \"score\": 0.4299\r\n },\r\n {\r\n \"keyword\": \"gift\",\r\n \"score\": 0.4135\r\n }\r\n ],\r\n \"concepts\": [\r\n {\r\n \"id\": \"https://openalex.org/C134697681\",\r\n \"wikidata\": \"https://www.wikidata.org/wiki/Q1609677\",\r\n \"display_name\": \"Clearing\",\r\n \"level\": 2,\r\n \"score\": 0.81496704\r\n },\r\n {\r\n \"id\": \"https://openalex.org/C162324750\",\r\n \"wikidata\": \"https://www.wikidata.org/wiki/Q8134\",\r\n \"display_name\": \"Economics\",\r\n \"level\": 0,\r\n \"score\": 0.7709161\r\n },\r\n {\r\n \"id\": \"https://openalex.org/C2777388388\",\r\n \"wikidata\": \"https://www.wikidata.org/wiki/Q6821213\",\r\n \"display_name\": \"Wage\",\r\n \"level\": 2,\r\n \"score\": 0.7343378\r\n },\r\n {\r\n \"id\": \"https://openalex.org/C145236788\",\r\n \"wikidata\": \"https://www.wikidata.org/wiki/Q28161\",\r\n \"display_name\": \"Labour economics\",\r\n \"level\": 1,\r\n \"score\": 0.72396404\r\n },\r\n {\r\n \"id\": \"https://openalex.org/C14981831\",\r\n \"wikidata\": \"https://www.wikidata.org/wiki/Q1713661\",\r\n \"display_name\": \"Market clearing\",\r\n \"level\": 2,\r\n \"score\": 0.70149326\r\n },\r\n {\r\n \"id\": \"https://openalex.org/C2778126366\",\r\n \"wikidata\": \"https://www.wikidata.org/wiki/Q41171\",\r\n \"display_name\": \"Unemployment\",\r\n \"level\": 2,\r\n \"score\": 0.6718695\r\n },\r\n {\r\n \"id\": \"https://openalex.org/C2776544115\",\r\n \"wikidata\": \"https://www.wikidata.org/wiki/Q17058676\",\r\n \"display_name\": \"Involuntary unemployment\",\r\n \"level\": 3,\r\n \"score\": 0.6377661\r\n },\r\n {\r\n \"id\": \"https://openalex.org/C182306322\",\r\n \"wikidata\": \"https://www.wikidata.org/wiki/Q1779371\",\r\n \"display_name\": \"Order (exchange)\",\r\n \"level\": 2,\r\n \"score\": 0.59540087\r\n },\r\n {\r\n \"id\": \"https://openalex.org/C6968784\",\r\n \"wikidata\": \"https://www.wikidata.org/wiki/Q1193835\",\r\n \"display_name\": \"Efficiency wage\",\r\n \"level\": 3,\r\n \"score\": 0.53425324\r\n },\r\n {\r\n \"id\": \"https://openalex.org/C994546\",\r\n \"wikidata\": \"https://www.wikidata.org/wiki/Q207449\",\r\n \"display_name\": \"Division of labour\",\r\n \"level\": 2,\r\n \"score\": 0.43008915\r\n },\r\n {\r\n \"id\": \"https://openalex.org/C182095102\",\r\n \"wikidata\": \"https://www.wikidata.org/wiki/Q6007285\",\r\n \"display_name\": \"Implicit contract theory\",\r\n \"level\": 3,\r\n \"score\": 0.42236993\r\n },\r\n {\r\n \"id\": \"https://openalex.org/C18762648\",\r\n \"wikidata\": \"https://www.wikidata.org/wiki/Q42213\",\r\n \"display_name\": \"Work (physics)\",\r\n \"level\": 2,\r\n \"score\": 0.41878027\r\n },\r\n {\r\n \"id\": \"https://openalex.org/C175444787\",\r\n \"wikidata\": \"https://www.wikidata.org/wiki/Q39072\",\r\n \"display_name\": \"Microeconomics\",\r\n \"level\": 1,\r\n \"score\": 0.30064553\r\n },\r\n {\r\n \"id\": \"https://openalex.org/C80984254\",\r\n \"wikidata\": \"https://www.wikidata.org/wiki/Q608190\",\r\n \"display_name\": \"Labor relations\",\r\n \"level\": 2,\r\n \"score\": 0.22578001\r\n },\r\n {\r\n \"id\": \"https://openalex.org/C34447519\",\r\n \"wikidata\": \"https://www.wikidata.org/wiki/Q179522\",\r\n \"display_name\": \"Market economy\",\r\n \"level\": 1,\r\n \"score\": 0.18438369\r\n },\r\n {\r\n \"id\": \"https://openalex.org/C139719470\",\r\n \"wikidata\": \"https://www.wikidata.org/wiki/Q39680\",\r\n \"display_name\": \"Macroeconomics\",\r\n \"level\": 1,\r\n \"score\": 0.08346212\r\n },\r\n {\r\n \"id\": \"https://openalex.org/C78519656\",\r\n \"wikidata\": \"https://www.wikidata.org/wiki/Q101333\",\r\n \"display_name\": \"Mechanical engineering\",\r\n \"level\": 1,\r\n \"score\": 0\r\n },\r\n {\r\n \"id\": \"https://openalex.org/C10138342\",\r\n \"wikidata\": \"https://www.wikidata.org/wiki/Q43015\",\r\n \"display_name\": \"Finance\",\r\n \"level\": 1,\r\n \"score\": 0\r\n },\r\n {\r\n \"id\": \"https://openalex.org/C127413603\",\r\n \"wikidata\": \"https://www.wikidata.org/wiki/Q11023\",\r\n \"display_name\": \"Engineering\",\r\n \"level\": 0,\r\n \"score\": 0\r\n }\r\n ],\r\n \"mesh\": [],\r\n \"locations_count\": 1,\r\n \"locations\": [\r\n {\r\n \"is_oa\": false,\r\n \"landing_page_url\": \"https://doi.org/10.2307/1885099\",\r\n \"pdf_url\": null,\r\n \"source\": {\r\n \"id\": \"https://openalex.org/S203860005\",\r\n \"display_name\": \"The Quarterly Journal of Economics\",\r\n \"issn_l\": \"0033-5533\",\r\n \"issn\": [\r\n \"0033-5533\",\r\n \"1531-4650\"\r\n ],\r\n \"is_oa\": false,\r\n \"is_in_doaj\": false,\r\n \"host_organization\": \"https://openalex.org/P4310311648\",\r\n \"host_organization_name\": \"Oxford University Press\",\r\n \"host_organization_lineage\": [\r\n \"https://openalex.org/P4310311647\",\r\n \"https://openalex.org/P4310311648\"\r\n ],\r\n \"host_organization_lineage_names\": [\r\n \"University of Oxford\",\r\n \"Oxford University Press\"\r\n ],\r\n \"type\": \"journal\"\r\n },\r\n \"license\": null,\r\n \"version\": null,\r\n \"is_accepted\": false,\r\n \"is_published\": false\r\n }\r\n ],\r\n \"best_oa_location\": null,\r\n \"sustainable_development_goals\": [\r\n {\r\n \"id\": \"https://metadata.un.org/sdg/8\",\r\n \"score\": 0.77,\r\n \"display_name\": \"Decent work and economic growth\"\r\n }\r\n ],\r\n \"grants\": [],\r\n \"referenced_works_count\": 20,\r\n \"referenced_works\": [\r\n \"https://openalex.org/W1480035415\",\r\n \"https://openalex.org/W1502717336\",\r\n \"https://openalex.org/W1516136238\",\r\n \"https://openalex.org/W1739556303\",\r\n \"https://openalex.org/W1990700960\",\r\n \"https://openalex.org/W2035384243\",\r\n \"https://openalex.org/W2061276533\",\r\n \"https://openalex.org/W2068723801\",\r\n \"https://openalex.org/W2074308844\",\r\n \"https://openalex.org/W2086436931\",\r\n \"https://openalex.org/W2088972693\",\r\n \"https://openalex.org/W2117172030\",\r\n \"https://openalex.org/W2148539013\",\r\n \"https://openalex.org/W2157300266\",\r\n \"https://openalex.org/W2162994934\",\r\n \"https://openalex.org/W2166184809\",\r\n \"https://openalex.org/W2332585815\",\r\n \"https://openalex.org/W2512666569\",\r\n \"https://openalex.org/W2796935577\",\r\n \"https://openalex.org/W3023342100\"\r\n ],\r\n \"related_works\": [\r\n \"https://openalex.org/W3181694214\",\r\n \"https://openalex.org/W2495368365\",\r\n \"https://openalex.org/W1491227498\",\r\n \"https://openalex.org/W2099326003\",\r\n \"https://openalex.org/W2090028775\",\r\n \"https://openalex.org/W2083061677\",\r\n \"https://openalex.org/W2127336856\",\r\n \"https://openalex.org/W3124441914\",\r\n \"https://openalex.org/W1592829115\",\r\n \"https://openalex.org/W3124968136\"\r\n ],\r\n \"ngrams_url\": \"https://api.openalex.org/works/W2099326003/ngrams\",\r\n \"abstract_inverted_index\": {\r\n \"This\": [\r\n 0\r\n ],\r\n \"paper\": [\r\n 1,\r\n 64\r\n ],\r\n \"explains\": [\r\n 2\r\n ],\r\n \"involuntary\": [\r\n 3\r\n ],\r\n \"unemployment\": [\r\n 4\r\n ],\r\n \"in\": [\r\n 5\r\n ],\r\n \"terms\": [\r\n 6\r\n ],\r\n \"of\": [\r\n 7,\r\n 10,\r\n 71\r\n ],\r\n \"the\": [\r\n 8,\r\n 20,\r\n 38,\r\n 47,\r\n 57\r\n ],\r\n \"response\": [\r\n 9\r\n ],\r\n \"firms\": [\r\n 11,\r\n 33\r\n ],\r\n \"to\": [\r\n 12,\r\n 29\r\n ],\r\n \"workers'\": [\r\n 13\r\n ],\r\n \"group\": [\r\n 14\r\n ],\r\n \"behavior.\": [\r\n 15\r\n ],\r\n \"Workers'\": [\r\n 16\r\n ],\r\n \"effort\": [\r\n 17\r\n ],\r\n \"depends\": [\r\n 18\r\n ],\r\n \"upon\": [\r\n 19\r\n ],\r\n \"norms\": [\r\n 21\r\n ],\r\n \"determining\": [\r\n 22\r\n ],\r\n \"a\": [\r\n 23,\r\n 67\r\n ],\r\n \"fair\": [\r\n 24\r\n ],\r\n \"day's\": [\r\n 25\r\n ],\r\n \"work.\": [\r\n 26\r\n ],\r\n \"In\": [\r\n 27\r\n ],\r\n \"order\": [\r\n 28\r\n ],\r\n \"affect\": [\r\n 30\r\n ],\r\n \"those\": [\r\n 31,\r\n 53\r\n ],\r\n \"norms,\": [\r\n 32\r\n ],\r\n \"may\": [\r\n 34\r\n ],\r\n \"pay\": [\r\n 35,\r\n 43,\r\n 55\r\n ],\r\n \"more\": [\r\n 36,\r\n 45\r\n ],\r\n \"than\": [\r\n 37,\r\n 46\r\n ],\r\n \"market-clearing\": [\r\n 39,\r\n 48,\r\n 58\r\n ],\r\n \"wage.\": [\r\n 40\r\n ],\r\n \"Industries\": [\r\n 41\r\n ],\r\n \"that\": [\r\n 42,\r\n 54\r\n ],\r\n \"consistently\": [\r\n 44\r\n ],\r\n \"wage\": [\r\n 49,\r\n 59\r\n ],\r\n \"are\": [\r\n 50,\r\n 60\r\n ],\r\n \"primary,\": [\r\n 51\r\n ],\r\n \"and\": [\r\n 52,\r\n 76\r\n ],\r\n \"only\": [\r\n 56\r\n ],\r\n \"secondary.\": [\r\n 61,\r\n 77\r\n ],\r\n \"Thus,\": [\r\n 62\r\n ],\r\n \"this\": [\r\n 63\r\n ],\r\n \"also\": [\r\n 65\r\n ],\r\n \"gives\": [\r\n 66\r\n ],\r\n \"theory\": [\r\n 68\r\n ],\r\n \"for\": [\r\n 69\r\n ],\r\n \"division\": [\r\n 70\r\n ],\r\n \"labor\": [\r\n 72\r\n ],\r\n \"markets\": [\r\n 73\r\n ],\r\n \"between\": [\r\n 74\r\n ],\r\n \"primary\": [\r\n 75\r\n ]\r\n },\r\n \"cited_by_api_url\": \"https://api.openalex.org/works?filter=cites:W2099326003\",\r\n \"counts_by_year\": [\r\n {\r\n \"year\": 2024,\r\n \"cited_by_count\": 5\r\n },\r\n {\r\n \"year\": 2023,\r\n \"cited_by_count\": 76\r\n },\r\n {\r\n \"year\": 2022,\r\n \"cited_by_count\": 75\r\n },\r\n {\r\n \"year\": 2021,\r\n \"cited_by_count\": 74\r\n },\r\n {\r\n \"year\": 2020,\r\n \"cited_by_count\": 98\r\n },\r\n {\r\n \"year\": 2019,\r\n \"cited_by_count\": 109\r\n },\r\n {\r\n \"year\": 2018,\r\n \"cited_by_count\": 96\r\n },\r\n {\r\n \"year\": 2017,\r\n \"cited_by_count\": 100\r\n },\r\n {\r\n \"year\": 2016,\r\n \"cited_by_count\": 108\r\n },\r\n {\r\n \"year\": 2015,\r\n \"cited_by_count\": 121\r\n },\r\n {\r\n \"year\": 2014,\r\n \"cited_by_count\": 133\r\n },\r\n {\r\n \"year\": 2013,\r\n \"cited_by_count\": 121\r\n },\r\n {\r\n \"year\": 2012,\r\n \"cited_by_count\": 131\r\n }\r\n ],\r\n \"updated_date\": \"2024-02-22T15:54:42.549913\",\r\n \"created_date\": \"2016-06-24\"\r\n}",
"items": [
{
"itemType": "journalArticle",
"title": "Labor Contracts as Partial Gift Exchange",
"creators": [
{
"firstName": "George A.",
"lastName": "Akerlof",
"creatorType": "author"
}
],
"date": "1982-11-01",
"DOI": "10.2307/1885099",
"ISSN": "0033-5533",
"extra": "OpenAlex: https://openalex.org/W2099326003",
"issue": "4",
"language": "en",
"pages": "543",
"publicationTitle": "The Quarterly Journal of Economics",
"volume": "97",
"attachments": [],
"tags": [
{
"tag": "exchange"
},
{
"tag": "gift"
},
{
"tag": "labor"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "{\"id\":\"https://openalex.org/W3123223998\",\"doi\":\"https://doi.org/10.1257/0002828042002561\",\"title\":\"Are Emily and Greg More Employable Than Lakisha and Jamal? A Field Experiment on Labor Market Discrimination\",\"display_name\":\"Are Emily and Greg More Employable Than Lakisha and Jamal? A Field Experiment on Labor Market Discrimination\",\"publication_year\":2004,\"publication_date\":\"2004-09-01\",\"ids\":{\"openalex\":\"https://openalex.org/W3123223998\",\"doi\":\"https://doi.org/10.1257/0002828042002561\",\"mag\":\"3123223998\"},\"language\":\"en\",\"primary_location\":{\"is_oa\":false,\"landing_page_url\":\"https://doi.org/10.1257/0002828042002561\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S23254222\",\"display_name\":\"The American Economic Review\",\"issn_l\":\"0002-8282\",\"issn\":[\"1944-7981\",\"0002-8282\"],\"is_oa\":false,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/P4310315912\",\"host_organization_name\":\"American Economic Association\",\"host_organization_lineage\":[\"https://openalex.org/P4310315912\"],\"host_organization_lineage_names\":[\"American Economic Association\"],\"type\":\"journal\"},\"license\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false},\"type\":\"article\",\"type_crossref\":\"journal-article\",\"indexed_in\":[\"crossref\"],\"open_access\":{\"is_oa\":true,\"oa_status\":\"green\",\"oa_url\":\"http://papers.nber.org/papers/w9873.pdf\",\"any_repository_has_fulltext\":true},\"authorships\":[{\"author_position\":\"first\",\"author\":{\"id\":\"https://openalex.org/A5002563734\",\"display_name\":\"Marianne Bertrand\",\"orcid\":null},\"institutions\":[{\"id\":\"https://openalex.org/I40347166\",\"display_name\":\"University of Chicago\",\"ror\":\"https://ror.org/024mw5h28\",\"country_code\":\"US\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I40347166\"]}],\"countries\":[\"US\"],\"is_corresponding\":false,\"raw_author_name\":\"Marianne Bertrand\",\"raw_affiliation_string\":\"University of Chicago ( )\",\"raw_affiliation_strings\":[\"University of Chicago ( )\"]},{\"author_position\":\"last\",\"author\":{\"id\":\"https://openalex.org/A5034703281\",\"display_name\":\"Sendhil Mullainathan\",\"orcid\":\"https://orcid.org/0000-0001-8508-4052\"},\"institutions\":[{\"id\":\"https://openalex.org/I63966007\",\"display_name\":\"Massachusetts Institute of Technology\",\"ror\":\"https://ror.org/042nb2s44\",\"country_code\":\"US\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I63966007\"]}],\"countries\":[\"US\"],\"is_corresponding\":false,\"raw_author_name\":\"Sendhil Mullainathan\",\"raw_affiliation_string\":\"Massachusetts Institute Of Technology#TAB#\",\"raw_affiliation_strings\":[\"Massachusetts Institute Of Technology#TAB#\"]}],\"countries_distinct_count\":1,\"institutions_distinct_count\":2,\"corresponding_author_ids\":[],\"corresponding_institution_ids\":[],\"apc_list\":null,\"apc_paid\":null,\"has_fulltext\":false,\"cited_by_count\":3465,\"cited_by_percentile_year\":{\"min\":99,\"max\":100},\"biblio\":{\"volume\":\"94\",\"issue\":\"4\",\"first_page\":\"991\",\"last_page\":\"1013\"},\"is_retracted\":false,\"is_paratext\":false,\"primary_topic\":{\"id\":\"https://openalex.org/T12970\",\"display_name\":\"Labor Market Discrimination and Inequality in Employment\",\"score\":1.0,\"subfield\":{\"id\":\"3312\",\"display_name\":\"Sociology and Political Science\"},\"field\":{\"id\":\"33\",\"display_name\":\"Social Sciences\"},\"domain\":{\"id\":\"2\",\"display_name\":\"Social Sciences\"}},\"topics\":[{\"id\":\"https://openalex.org/T12970\",\"display_name\":\"Labor Market Discrimination and Inequality in Employment\",\"score\":1.0,\"subfield\":{\"id\":\"3312\",\"display_name\":\"Sociology and Political Science\"},\"field\":{\"id\":\"33\",\"display_name\":\"Social Sciences\"},\"domain\":{\"id\":\"2\",\"display_name\":\"Social Sciences\"}},{\"id\":\"https://openalex.org/T14006\",\"display_name\":\"Linguistic Borrowing and Language Contact Phenomena\",\"score\":0.9506,\"subfield\":{\"id\":\"1203\",\"display_name\":\"Language and Linguistics\"},\"field\":{\"id\":\"12\",\"display_name\":\"Arts and Humanities\"},\"domain\":{\"id\":\"2\",\"display_name\":\"Social Sciences\"}},{\"id\":\"https://openalex.org/T12380\",\"display_name\":\"Authorship Attribution and User Profiling in Text\",\"score\":0.9505,\"subfield\":{\"id\":\"1702\",\"display_name\":\"Artificial Intelligence\"},\"field\":{\"id\":\"17\",\"display_name\":\"Computer Science\"},\"domain\":{\"id\":\"3\",\"display_name\":\"Physical Sciences\"}}],\"keywords\":[{\"keyword\":\"labor market discrimination\",\"score\":0.6636},{\"keyword\":\"emily\",\"score\":0.3282}],\"concepts\":[{\"id\":\"https://openalex.org/C204495577\",\"wikidata\":\"https://www.wikidata.org/wiki/Q1205349\",\"display_name\":\"Callback\",\"level\":2,\"score\":0.83815134},{\"id\":\"https://openalex.org/C201280247\",\"wikidata\":\"https://www.wikidata.org/wiki/Q11032\",\"display_name\":\"Newspaper\",\"level\":2,\"score\":0.8025631},{\"id\":\"https://openalex.org/C76509639\",\"wikidata\":\"https://www.wikidata.org/wiki/Q918036\",\"display_name\":\"Race (biology)\",\"level\":2,\"score\":0.71496654},{\"id\":\"https://openalex.org/C56273599\",\"wikidata\":\"https://www.wikidata.org/wiki/Q3122841\",\"display_name\":\"White (mutation)\",\"level\":3,\"score\":0.6915195},{\"id\":\"https://openalex.org/C112698675\",\"wikidata\":\"https://www.wikidata.org/wiki/Q37038\",\"display_name\":\"Advertising\",\"level\":1,\"score\":0.49600014},{\"id\":\"https://openalex.org/C2987028688\",\"wikidata\":\"https://www.wikidata.org/wiki/Q49085\",\"display_name\":\"African american\",\"level\":2,\"score\":0.46188635},{\"id\":\"https://openalex.org/C2779530757\",\"wikidata\":\"https://www.wikidata.org/wiki/Q1207505\",\"display_name\":\"Quality (philosophy)\",\"level\":2,\"score\":0.41410452},{\"id\":\"https://openalex.org/C145236788\",\"wikidata\":\"https://www.wikidata.org/wiki/Q28161\",\"display_name\":\"Labour economics\",\"level\":1,\"score\":0.4028681},{\"id\":\"https://openalex.org/C162324750\",\"wikidata\":\"https://www.wikidata.org/wiki/Q8134\",\"display_name\":\"Economics\",\"level\":0,\"score\":0.35625333},{\"id\":\"https://openalex.org/C144024400\",\"wikidata\":\"https://www.wikidata.org/wiki/Q21201\",\"display_name\":\"Sociology\",\"level\":0,\"score\":0.30022982},{\"id\":\"https://openalex.org/C144133560\",\"wikidata\":\"https://www.wikidata.org/wiki/Q4830453\",\"display_name\":\"Business\",\"level\":0,\"score\":0.28154504},{\"id\":\"https://openalex.org/C107993555\",\"wikidata\":\"https://www.wikidata.org/wiki/Q1662673\",\"display_name\":\"Gender studies\",\"level\":1,\"score\":0.18850306},{\"id\":\"https://openalex.org/C41008148\",\"wikidata\":\"https://www.wikidata.org/wiki/Q21198\",\"display_name\":\"Computer science\",\"level\":0,\"score\":0.09495148},{\"id\":\"https://openalex.org/C55493867\",\"wikidata\":\"https://www.wikidata.org/wiki/Q7094\",\"display_name\":\"Biochemistry\",\"level\":1,\"score\":0.0},{\"id\":\"https://openalex.org/C185592680\",\"wikidata\":\"https://www.wikidata.org/wiki/Q2329\",\"display_name\":\"Chemistry\",\"level\":0,\"score\":0.0},{\"id\":\"https://openalex.org/C2549261\",\"wikidata\":\"https://www.wikidata.org/wiki/Q43455\",\"display_name\":\"Ethnology\",\"level\":1,\"score\":0.0},{\"id\":\"https://openalex.org/C138885662\",\"wikidata\":\"https://www.wikidata.org/wiki/Q5891\",\"display_name\":\"Philosophy\",\"level\":0,\"score\":0.0},{\"id\":\"https://openalex.org/C111472728\",\"wikidata\":\"https://www.wikidata.org/wiki/Q9471\",\"display_name\":\"Epistemology\",\"level\":1,\"score\":0.0},{\"id\":\"https://openalex.org/C104317684\",\"wikidata\":\"https://www.wikidata.org/wiki/Q7187\",\"display_name\":\"Gene\",\"level\":2,\"score\":0.0},{\"id\":\"https://openalex.org/C199360897\",\"wikidata\":\"https://www.wikidata.org/wiki/Q9143\",\"display_name\":\"Programming language\",\"level\":1,\"score\":0.0}],\"mesh\":[],\"locations_count\":5,\"locations\":[{\"is_oa\":false,\"landing_page_url\":\"https://doi.org/10.1257/0002828042002561\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S23254222\",\"display_name\":\"The American Economic Review\",\"issn_l\":\"0002-8282\",\"issn\":[\"1944-7981\",\"0002-8282\"],\"is_oa\":false,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/P4310315912\",\"host_organization_name\":\"American Economic Association\",\"host_organization_lineage\":[\"https://openalex.org/P4310315912\"],\"host_organization_lineage_names\":[\"American Economic Association\"],\"type\":\"journal\"},\"license\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false},{\"is_oa\":true,\"landing_page_url\":\"http://papers.nber.org/papers/w9873.pdf\",\"pdf_url\":\"http://papers.nber.org/papers/w9873.pdf\",\"source\":{\"id\":\"https://openalex.org/S4308707206\",\"display_name\":\"Library Union Catalog of Bavaria, Berlin and Brandenburg (B3Kat Repository)\",\"issn_l\":null,\"issn\":null,\"is_oa\":true,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/I157725225\",\"host_organization_name\":\"University of Illinois Urbana-Champaign\",\"host_organization_lineage\":[\"https://openalex.org/I157725225\"],\"host_organization_lineage_names\":[\"University of Illinois Urbana-Champaign\"],\"type\":\"repository\"},\"license\":null,\"version\":\"publishedVersion\",\"is_accepted\":true,\"is_published\":true},{\"is_oa\":true,\"landing_page_url\":\"http://s3.amazonaws.com/fieldexperiments-papers2/papers/00216.pdf\",\"pdf_url\":\"http://s3.amazonaws.com/fieldexperiments-papers2/papers/00216.pdf\",\"source\":{\"id\":\"https://openalex.org/S4306401271\",\"display_name\":\"RePEc: Research Papers in Economics\",\"issn_l\":null,\"issn\":null,\"is_oa\":true,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/I77793887\",\"host_organization_name\":\"Federal Reserve Bank of St. Louis\",\"host_organization_lineage\":[\"https://openalex.org/I77793887\"],\"host_organization_lineage_names\":[\"Federal Reserve Bank of St. Louis\"],\"type\":\"repository\"},\"license\":null,\"version\":\"publishedVersion\",\"is_accepted\":true,\"is_published\":true},{\"is_oa\":true,\"landing_page_url\":\"http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.841.6374\",\"pdf_url\":\"http://www.nber.org/papers/w9873.pdf\",\"source\":{\"id\":\"https://openalex.org/S4306400349\",\"display_name\":\"CiteSeer X (The Pennsylvania State University)\",\"issn_l\":null,\"issn\":null,\"is_oa\":true,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/I130769515\",\"host_organization_name\":\"Pennsylvania State University\",\"host_organization_lineage\":[\"https://openalex.org/I130769515\"],\"host_organization_lineage_names\":[\"Pennsylvania State University\"],\"type\":\"repository\"},\"license\":null,\"version\":\"publishedVersion\",\"is_accepted\":true,\"is_published\":true},{\"is_oa\":true,\"landing_page_url\":\"http://hdl.handle.net/1721.1/63261\",\"pdf_url\":\"https://dspace.mit.edu/bitstream/1721.1/63261/1/areemilygregmore00bert.pdf\",\"source\":{\"id\":\"https://openalex.org/S4306400425\",\"display_name\":\"DSpace@MIT (Massachusetts Institute of Technology)\",\"issn_l\":null,\"issn\":null,\"is_oa\":true,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/I63966007\",\"host_organization_name\":\"Massachusetts Institute of Technology\",\"host_organization_lineage\":[\"https://openalex.org/I63966007\"],\"host_organization_lineage_names\":[\"Massachusetts Institute of Technology\"],\"type\":\"repository\"},\"license\":\"cc-by-nc\",\"version\":\"submittedVersion\",\"is_accepted\":false,\"is_published\":false}],\"best_oa_location\":{\"is_oa\":true,\"landing_page_url\":\"http://papers.nber.org/papers/w9873.pdf\",\"pdf_url\":\"http://papers.nber.org/papers/w9873.pdf\",\"source\":{\"id\":\"https://openalex.org/S4308707206\",\"display_name\":\"Library Union Catalog of Bavaria, Berlin and Brandenburg (B3Kat Repository)\",\"issn_l\":null,\"issn\":null,\"is_oa\":true,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/I157725225\",\"host_organization_name\":\"University of Illinois Urbana-Champaign\",\"host_organization_lineage\":[\"https://openalex.org/I157725225\"],\"host_organization_lineage_names\":[\"University of Illinois Urbana-Champaign\"],\"type\":\"repository\"},\"license\":null,\"version\":\"publishedVersion\",\"is_accepted\":true,\"is_published\":true},\"sustainable_development_goals\":[],\"grants\":[],\"referenced_works_count\":13,\"referenced_works\":[\"https://openalex.org/W1522598817\",\"https://openalex.org/W1978385790\",\"https://openalex.org/W1991418004\",\"https://openalex.org/W2010532565\",\"https://openalex.org/W2034666618\",\"https://openalex.org/W2067516326\",\"https://openalex.org/W2116190275\",\"https://openalex.org/W2159594033\",\"https://openalex.org/W3122492922\",\"https://openalex.org/W3122889739\",\"https://openalex.org/W3124290904\",\"https://openalex.org/W4240275752\",\"https://openalex.org/W4251381017\"],\"related_works\":[\"https://openalex.org/W2613684332\",\"https://openalex.org/W2283761799\",\"https://openalex.org/W2117563254\",\"https://openalex.org/W2036388380\",\"https://openalex.org/W2369126155\",\"https://openalex.org/W2577299680\",\"https://openalex.org/W2376554757\",\"https://openalex.org/W612150824\",\"https://openalex.org/W2898656313\",\"https://openalex.org/W2126556840\"],\"ngrams_url\":\"https://api.openalex.org/works/W3123223998/ngrams\",\"abstract_inverted_index\":{\"We\":[0,66],\"study\":[1],\"race\":[2,83],\"in\":[3,14,90],\"the\":[4,78,91],\"labor\":[5,93],\"market\":[6],\"by\":[7,82],\"sending\":[8],\"fictitious\":[9],\"resumes\":[10,23],\"to\":[11,45,86],\"help-wanted\":[12],\"ads\":[13],\"Boston\":[15],\"and\":[16,63],\"Chicago\":[17],\"newspapers.\":[18],\"To\":[19],\"manipulate\":[20],\"perceived\":[21],\"race,\":[22],\"are\":[24,41,73],\"randomly\":[25],\"assigned\":[26],\"African-American-\":[27],\"or\":[28],\"White-sounding\":[29],\"names.\":[30,79],\"White\":[31,49],\"names\":[32,50],\"receive\":[33],\"50\":[34],\"percent\":[35],\"more\":[36,43],\"callbacks\":[37],\"for\":[38,48,52],\"interviews.\":[39],\"Callbacks\":[40],\"also\":[42,67],\"responsive\":[44],\"resume\":[46],\"quality\":[47],\"than\":[51],\"African-American\":[53],\"ones.\":[54],\"The\":[55],\"racial\":[56],\"gap\":[57],\"is\":[58],\"uniform\":[59],\"across\":[60],\"occupation,\":[61],\"industry,\":[62],\"employer\":[64],\"size.\":[65],\"find\":[68],\"little\":[69],\"evidence\":[70],\"that\":[71],\"employers\":[72],\"inferring\":[74],\"social\":[75],\"class\":[76],\"from\":[77],\"Differential\":[80],\"treatment\":[81],\"still\":[84,87],\"appears\":[85],\"be\":[88],\"prominent\":[89],\"U.S.\":[92],\"market.\":[94]},\"cited_by_api_url\":\"https://api.openalex.org/works?filter=cites:W3123223998\",\"counts_by_year\":[{\"year\":2024,\"cited_by_count\":17},{\"year\":2023,\"cited_by_count\":274},{\"year\":2022,\"cited_by_count\":277},{\"year\":2021,\"cited_by_count\":281},{\"year\":2020,\"cited_by_count\":328},{\"year\":2019,\"cited_by_count\":367},{\"year\":2018,\"cited_by_count\":233},{\"year\":2017,\"cited_by_count\":220},{\"year\":2016,\"cited_by_count\":186},{\"year\":2015,\"cited_by_count\":178},{\"year\":2014,\"cited_by_count\":199},{\"year\":2013,\"cited_by_count\":149},{\"year\":2012,\"cited_by_count\":156}],\"updated_date\":\"2024-02-18T16:41:58.927399\",\"created_date\":\"2021-02-01\"}\r\n",
"items": [
{
"itemType": "journalArticle",
"title": "Are Emily and Greg More Employable Than Lakisha and Jamal? A Field Experiment on Labor Market Discrimination",
"creators": [
{
"firstName": "Marianne",
"lastName": "Bertrand",
"creatorType": "author"
},
{
"firstName": "Sendhil",
"lastName": "Mullainathan",
"creatorType": "author"
}
],
"date": "2004-09-01",
"DOI": "10.1257/0002828042002561",
"ISSN": "1944-7981",
"extra": "OpenAlex: https://openalex.org/W3123223998",
"issue": "4",
"language": "en",
"pages": "991-1013",
"publicationTitle": "The American Economic Review",
"volume": "94",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "emily"
},
{
"tag": "labor market discrimination"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "{\"id\":\"https://openalex.org/W2105705711\",\"doi\":\"https://doi.org/10.1007/978-94-017-1406-8_2\",\"title\":\"The Effects of Financial Incentives in Experiments: A Review and Capital-Labor-Production Framework\",\"display_name\":\"The Effects of Financial Incentives in Experiments: A Review and Capital-Labor-Production Framework\",\"publication_year\":1999,\"publication_date\":\"1999-01-01\",\"ids\":{\"openalex\":\"https://openalex.org/W2105705711\",\"doi\":\"https://doi.org/10.1007/978-94-017-1406-8_2\",\"mag\":\"2105705711\"},\"language\":\"en\",\"primary_location\":{\"is_oa\":false,\"landing_page_url\":\"https://doi.org/10.1007/978-94-017-1406-8_2\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S4306463937\",\"display_name\":\"Springer eBooks\",\"issn_l\":null,\"issn\":null,\"is_oa\":false,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/P4310319965\",\"host_organization_name\":\"Springer Nature\",\"host_organization_lineage\":[\"https://openalex.org/P4310319965\"],\"host_organization_lineage_names\":[\"Springer Nature\"],\"type\":\"ebook platform\"},\"license\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false},\"type\":\"book-chapter\",\"type_crossref\":\"book-chapter\",\"indexed_in\":[\"crossref\"],\"open_access\":{\"is_oa\":true,\"oa_status\":\"green\",\"oa_url\":\"https://authors.library.caltech.edu/83580/1/sswp1059.pdf\",\"any_repository_has_fulltext\":true},\"authorships\":[{\"author_position\":\"first\",\"author\":{\"id\":\"https://openalex.org/A5024087833\",\"display_name\":\"Colin F. Camerer\",\"orcid\":\"https://orcid.org/0000-0003-4049-1871\"},\"institutions\":[{\"id\":\"https://openalex.org/I122411786\",\"display_name\":\"California Institute of Technology\",\"ror\":\"https://ror.org/05dxps055\",\"country_code\":\"US\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I122411786\"]}],\"countries\":[\"US\"],\"is_corresponding\":false,\"raw_author_name\":\"Colin F. Camerer\",\"raw_affiliation_string\":\"Division of Humanities and Social Sciences 228-77, California Institute of Technology, Pasadena,\",\"raw_affiliation_strings\":[\"Division of Humanities and Social Sciences 228-77, California Institute of Technology, Pasadena,\"]},{\"author_position\":\"last\",\"author\":{\"id\":\"https://openalex.org/A5047900722\",\"display_name\":\"Robin M. Hogarth\",\"orcid\":\"https://orcid.org/0000-0001-7671-8981\"},\"institutions\":[{\"id\":\"https://openalex.org/I40347166\",\"display_name\":\"University of Chicago\",\"ror\":\"https://ror.org/024mw5h28\",\"country_code\":\"US\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I40347166\"]}],\"countries\":[\"US\"],\"is_corresponding\":false,\"raw_author_name\":\"Robin M. Hogarth\",\"raw_affiliation_string\":\"University of Chicago (Chicago).\",\"raw_affiliation_strings\":[\"University of Chicago (Chicago).\"]}],\"countries_distinct_count\":1,\"institutions_distinct_count\":2,\"corresponding_author_ids\":[],\"corresponding_institution_ids\":[],\"apc_list\":null,\"apc_paid\":null,\"has_fulltext\":false,\"cited_by_count\":622,\"cited_by_percentile_year\":{\"min\":99,\"max\":100},\"biblio\":{\"volume\":null,\"issue\":null,\"first_page\":\"7\",\"last_page\":\"48\"},\"is_retracted\":false,\"is_paratext\":false,\"primary_topic\":{\"id\":\"https://openalex.org/T10646\",\"display_name\":\"Social Preferences and Economic Behavior\",\"score\":0.9999,\"subfield\":{\"id\":\"https://openalex.org/subfields/3311\",\"display_name\":\"Safety Research\"},\"field\":{\"id\":\"https://openalex.org/fields/33\",\"display_name\":\"Social Sciences\"},\"domain\":{\"id\":\"https://openalex.org/domains/2\",\"display_name\":\"Social Sciences\"}},\"topics\":[{\"id\":\"https://openalex.org/T10646\",\"display_name\":\"Social Preferences and Economic Behavior\",\"score\":0.9999,\"subfield\":{\"id\":\"https://openalex.org/subfields/3311\",\"display_name\":\"Safety Research\"},\"field\":{\"id\":\"https://openalex.org/fields/33\",\"display_name\":\"Social Sciences\"},\"domain\":{\"id\":\"https://openalex.org/domains/2\",\"display_name\":\"Social Sciences\"}},{\"id\":\"https://openalex.org/T10315\",\"display_name\":\"Behavioral Economics and Decision Making\",\"score\":0.9985,\"subfield\":{\"id\":\"https://openalex.org/subfields/1800\",\"display_name\":\"General Decision Sciences\"},\"field\":{\"id\":\"https://openalex.org/fields/18\",\"display_name\":\"Decision Sciences\"},\"domain\":{\"id\":\"https://openalex.org/domains/2\",\"display_name\":\"Social Sciences\"}},{\"id\":\"https://openalex.org/T10841\",\"display_name\":\"Discrete Choice Models in Economics and Health Care\",\"score\":0.9821,\"subfield\":{\"id\":\"https://openalex.org/subfields/2002\",\"display_name\":\"Economics and Econometrics\"},\"field\":{\"id\":\"https://openalex.org/fields/20\",\"display_name\":\"Economics, Econometrics and Finance\"},\"domain\":{\"id\":\"https://openalex.org/domains/2\",\"display_name\":\"Social Sciences\"}}],\"keywords\":[{\"keyword\":\"financial incentives\",\"score\":0.6353},{\"keyword\":\"experiments\",\"score\":0.4196},{\"keyword\":\"capital-labor-production\",\"score\":0.25}],\"concepts\":[{\"id\":\"https://openalex.org/C29122968\",\"wikidata\":\"https://www.wikidata.org/wiki/Q1414816\",\"display_name\":\"Incentive\",\"level\":2,\"score\":0.8655314},{\"id\":\"https://openalex.org/C2779861158\",\"wikidata\":\"https://www.wikidata.org/wiki/Q1549811\",\"display_name\":\"Generosity\",\"level\":2,\"score\":0.597156},{\"id\":\"https://openalex.org/C145097563\",\"wikidata\":\"https://www.wikidata.org/wiki/Q1148747\",\"display_name\":\"Payment\",\"level\":2,\"score\":0.56911683},{\"id\":\"https://openalex.org/C2778348673\",\"wikidata\":\"https://www.wikidata.org/wiki/Q739302\",\"display_name\":\"Production (economics)\",\"level\":2,\"score\":0.55046386},{\"id\":\"https://openalex.org/C162324750\",\"wikidata\":\"https://www.wikidata.org/wiki/Q8134\",\"display_name\":\"Economics\",\"level\":0,\"score\":0.53527635},{\"id\":\"https://openalex.org/C175444787\",\"wikidata\":\"https://www.wikidata.org/wiki/Q39072\",\"display_name\":\"Microeconomics\",\"level\":1,\"score\":0.49067962},{\"id\":\"https://openalex.org/C196083921\",\"wikidata\":\"https://www.wikidata.org/wiki/Q7915758\",\"display_name\":\"Variance (accounting)\",\"level\":2,\"score\":0.4220477},{\"id\":\"https://openalex.org/C100001284\",\"wikidata\":\"https://www.wikidata.org/wiki/Q2248246\",\"display_name\":\"Public economics\",\"level\":1,\"score\":0.35535687},{\"id\":\"https://openalex.org/C10138342\",\"wikidata\":\"https://www.wikidata.org/wiki/Q43015\",\"display_name\":\"Finance\",\"level\":1,\"score\":0.17811051},{\"id\":\"https://openalex.org/C121955636\",\"wikidata\":\"https://www.wikidata.org/wiki/Q4116214\",\"display_name\":\"Accounting\",\"level\":1,\"score\":0.08130938},{\"id\":\"https://openalex.org/C138885662\",\"wikidata\":\"https://www.wikidata.org/wiki/Q5891\",\"display_name\":\"Philosophy\",\"level\":0,\"score\":0.0},{\"id\":\"https://openalex.org/C27206212\",\"wikidata\":\"https://www.wikidata.org/wiki/Q34178\",\"display_name\":\"Theology\",\"level\":1,\"score\":0.0}],\"mesh\":[],\"locations_count\":3,\"locations\":[{\"is_oa\":false,\"landing_page_url\":\"https://doi.org/10.1007/978-94-017-1406-8_2\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S4306463937\",\"display_name\":\"Springer eBooks\",\"issn_l\":null,\"issn\":null,\"is_oa\":false,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/P4310319965\",\"host_organization_name\":\"Springer Nature\",\"host_organization_lineage\":[\"https://openalex.org/P4310319965\"],\"host_organization_lineage_names\":[\"Springer Nature\"],\"type\":\"ebook platform\"},\"license\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false},{\"is_oa\":true,\"landing_page_url\":\"https://resolver.caltech.edu/CaltechAUTHORS:20171129-161418280\",\"pdf_url\":\"https://authors.library.caltech.edu/83580/1/sswp1059.pdf\",\"source\":{\"id\":\"https://openalex.org/S4306402161\",\"display_name\":\"CaltechAUTHORS (California Institute of Technology)\",\"issn_l\":null,\"issn\":null,\"is_oa\":true,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/I122411786\",\"host_organization_name\":\"California Institute of Technology\",\"host_organization_lineage\":[\"https://openalex.org/I122411786\"],\"host_organization_lineage_names\":[\"California Institute of Technology\"],\"type\":\"repository\"},\"license\":null,\"version\":\"acceptedVersion\",\"is_accepted\":true,\"is_published\":false},{\"is_oa\":true,\"landing_page_url\":\"https://resolver.caltech.edu/CaltechAUTHORS:20110208-132914477\",\"pdf_url\":\"https://authors.library.caltech.edu/22080/1/wp1059%5B1%5D.pdf\",\"source\":{\"id\":\"https://openalex.org/S4306402162\",\"display_name\":\"CaltechAUTHORS (California Institute of Technology)\",\"issn_l\":null,\"issn\":null,\"is_oa\":true,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/I122411786\",\"host_organization_name\":\"California Institute of Technology\",\"host_organization_lineage\":[\"https://openalex.org/I122411786\"],\"host_organization_lineage_names\":[\"California Institute of Technology\"],\"type\":\"repository\"},\"license\":null,\"version\":\"acceptedVersion\",\"is_accepted\":true,\"is_published\":false}],\"best_oa_location\":{\"is_oa\":true,\"landing_page_url\":\"https://resolver.caltech.edu/CaltechAUTHORS:20171129-161418280\",\"pdf_url\":\"https://authors.library.caltech.edu/83580/1/sswp1059.pdf\",\"source\":{\"id\":\"https://openalex.org/S4306402161\",\"display_name\":\"CaltechAUTHORS (California Institute of Technology)\",\"issn_l\":null,\"issn\":null,\"is_oa\":true,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/I122411786\",\"host_organization_name\":\"California Institute of Technology\",\"host_organization_lineage\":[\"https://openalex.org/I122411786\"],\"host_organization_lineage_names\":[\"California Institute of Technology\"],\"type\":\"repository\"},\"license\":null,\"version\":\"acceptedVersion\",\"is_accepted\":true,\"is_published\":false},\"sustainable_development_goals\":[{\"id\":\"https://metadata.un.org/sdg/8\",\"display_name\":\"Decent work and economic growth\",\"score\":0.7}],\"grants\":[],\"referenced_works_count\":78,\"referenced_works\":[\"https://openalex.org/W1964405317\",\"https://openalex.org/W1964897423\",\"https://openalex.org/W1971669205\",\"https://openalex.org/W1973893247\",\"https://openalex.org/W1974975426\",\"https://openalex.org/W1975547507\",\"https://openalex.org/W1975989400\",\"https://openalex.org/W1978429956\",\"https://openalex.org/W1988930314\",\"https://openalex.org/W1988942456\",\"https://openalex.org/W1989930562\",\"https://openalex.org/W1993159809\",\"https://openalex.org/W1993308331\",\"https://openalex.org/W1993415685\",\"https://openalex.org/W1994069242\",\"https://openalex.org/W1995243998\",\"https://openalex.org/W1999945441\",\"https://openalex.org/W2002646132\",\"https://openalex.org/W2005513160\",\"https://openalex.org/W2007545850\",\"https://openalex.org/W2012218966\",\"https://openalex.org/W2013107161\",\"https://openalex.org/W2014686230\",\"https://openalex.org/W2015441835\",\"https://openalex.org/W2023124293\",\"https://openalex.org/W2023772254\",\"https://openalex.org/W2027369625\",\"https://openalex.org/W2033673182\",\"https://openalex.org/W2035920101\",\"https://openalex.org/W2041946752\",\"https://openalex.org/W2043765516\",\"https://openalex.org/W2045163169\",\"https://openalex.org/W2045385178\",\"https://openalex.org/W2045744884\",\"https://openalex.org/W2048229474\",\"https://openalex.org/W2049297495\",\"https://openalex.org/W2053046778\",\"https://openalex.org/W2053617883\",\"https://openalex.org/W2055269809\",\"https://openalex.org/W2057925076\",\"https://openalex.org/W2058953064\",\"https://openalex.org/W2062687423\",\"https://openalex.org/W2063125613\",\"https://openalex.org/W2065612900\",\"https://openalex.org/W2066088184\",\"https://openalex.org/W2067835286\",\"https://openalex.org/W2068473107\",\"https://openalex.org/W2072365199\",\"https://openalex.org/W2074960359\",\"https://openalex.org/W2075742573\",\"https://openalex.org/W2078169121\",\"https://openalex.org/W2079053008\",\"https://openalex.org/W2081124617\",\"https://openalex.org/W2083307720\",\"https://openalex.org/W2087991264\",\"https://openalex.org/W2088646424\",\"https://openalex.org/W2120677542\",\"https://openalex.org/W2131229778\",\"https://openalex.org/W2147330019\",\"https://openalex.org/W2151844206\",\"https://openalex.org/W2156616450\",\"https://openalex.org/W2161901642\",\"https://openalex.org/W2165828708\",\"https://openalex.org/W2172873870\",\"https://openalex.org/W2313173377\",\"https://openalex.org/W2315360633\",\"https://openalex.org/W2321372096\",\"https://openalex.org/W2412876785\",\"https://openalex.org/W3122684324\",\"https://openalex.org/W3124187280\",\"https://openalex.org/W4229716956\",\"https://openalex.org/W4231282061\",\"https://openalex.org/W4234863607\",\"https://openalex.org/W4242490622\",\"https://openalex.org/W4245280887\",\"https://openalex.org/W4246756863\",\"https://openalex.org/W4253633548\",\"https://openalex.org/W4290377501\"],\"related_works\":[\"https://openalex.org/W4388803188\",\"https://openalex.org/W4234975527\",\"https://openalex.org/W2108936692\",\"https://openalex.org/W4317927411\",\"https://openalex.org/W2071684985\",\"https://openalex.org/W2285351234\",\"https://openalex.org/W1867350216\",\"https://openalex.org/W4247867945\",\"https://openalex.org/W4298004773\",\"https://openalex.org/W4385380367\"],\"ngrams_url\":\"https://api.openalex.org/works/W2105705711/ngrams\",\"abstract_inverted_index\":{\"We\":[0,83],\"review\":[1],\"74\":[2],\"experiments\":[3],\"with\":[4,71],\"no,\":[5],\"low,\":[6],\"or\":[7],\"high\":[8],\"performance-based\":[9],\"financial\":[10],\"incentives.\":[11,98],\"The\":[12],\"modal\":[13],\"result\":[14],\"is\":[15,23,81],\"no\":[16,87],\"effect\":[17],\"on\":[18,78],\"mean\":[19],\"performance\":[20,33],\"(though\":[21],\"variance\":[22],\"usually\":[24],\"reduced\":[25],\"by\":[26,96],\"higher\":[27],\"payment).\":[28],\"Higher\":[29],\"incentive\":[30],\"does\":[31],\"improve\":[32],\"often,\":[34],\"typically\":[35],\"judgment\":[36],\"tasks\":[37],\"that\":[38,86],\"are\":[39,55],\"responsive\":[40],\"to\":[41,57],\"better\":[42],\"effort.\":[43],\"Incentives\":[44],\"also\":[45,84],\"reduce\":[46],\"\\u201cpresentation\\u201d\":[47],\"effects\":[48,54,58],\"(e.g.,\":[49],\"generosity\":[50],\"and\":[51,65,69],\"risk-seeking).\":[52],\"Incentive\":[53],\"comparable\":[56],\"of\":[59],\"other\":[60],\"variables,\":[61,73],\"particularly\":[62],\"\\u201ccognitive\":[63],\"capital\\u201d\":[64],\"task\":[66],\"\\u201cproduction\\u201d\":[67],\"demands,\":[68],\"interact\":[70],\"those\":[72],\"so\":[74],\"a\":[75],\"narrow-minded\":[76],\"focus\":[77],\"incentives\":[79],\"alone\":[80],\"misguided.\":[82],\"note\":[85],\"replicated\":[88],\"study\":[89],\"has\":[90],\"made\":[91],\"rationality\":[92],\"violations\":[93],\"disappear\":[94],\"purely\":[95],\"raising\":[97]},\"cited_by_api_url\":\"https://api.openalex.org/works?filter=cites:W2105705711\",\"counts_by_year\":[{\"year\":2023,\"cited_by_count\":3},{\"year\":2022,\"cited_by_count\":5},{\"year\":2021,\"cited_by_count\":9},{\"year\":2020,\"cited_by_count\":18},{\"year\":2019,\"cited_by_count\":21},{\"year\":2018,\"cited_by_count\":21},{\"year\":2017,\"cited_by_count\":21},{\"year\":2016,\"cited_by_count\":26},{\"year\":2015,\"cited_by_count\":36},{\"year\":2014,\"cited_by_count\":48},{\"year\":2013,\"cited_by_count\":41},{\"year\":2012,\"cited_by_count\":62}],\"updated_date\":\"2024-02-23T23:28:16.339197\",\"created_date\":\"2016-06-24\"}\r\n",
"items": [
{
"itemType": "bookSection",
"title": "The Effects of Financial Incentives in Experiments: A Review and Capital-Labor-Production Framework",
"creators": [
{
"firstName": "Colin F.",
"lastName": "Camerer",
"creatorType": "author"
},
{
"firstName": "Robin M.",
"lastName": "Hogarth",
"creatorType": "author"
}
],
"date": "1999-01-01",
"bookTitle": "Springer eBooks",
"extra": "OpenAlex: https://openalex.org/W2105705711",
"language": "en",
"pages": "7-48",
"publisher": "Springer Nature",
"attachments": [
{
"title": "Accepted Version PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "capital-labor-production"
},
{
"tag": "experiments"
},
{
"tag": "financial incentives"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "{\"id\":\"https://openalex.org/W4234549826\",\"doi\":\"https://doi.org/10.1215/9780822377009\",\"title\":\"Clinical Labor\",\"display_name\":\"Clinical Labor\",\"publication_year\":2014,\"publication_date\":\"2014-01-01\",\"ids\":{\"openalex\":\"https://openalex.org/W4234549826\",\"doi\":\"https://doi.org/10.1215/9780822377009\"},\"language\":null,\"primary_location\":{\"is_oa\":false,\"landing_page_url\":\"https://doi.org/10.1215/9780822377009\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S4306463122\",\"display_name\":\"Duke University Press eBooks\",\"issn_l\":null,\"issn\":null,\"is_oa\":false,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/P4310315698\",\"host_organization_name\":\"Duke University Press\",\"host_organization_lineage\":[\"https://openalex.org/P4310315572\",\"https://openalex.org/P4310315698\"],\"host_organization_lineage_names\":[\"Duke University\",\"Duke University Press\"],\"type\":\"ebook platform\"},\"license\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false},\"type\":\"book\",\"type_crossref\":\"book\",\"indexed_in\":[\"crossref\"],\"open_access\":{\"is_oa\":false,\"oa_status\":\"closed\",\"oa_url\":null,\"any_repository_has_fulltext\":false},\"authorships\":[{\"author_position\":\"first\",\"author\":{\"id\":\"https://openalex.org/A5081203523\",\"display_name\":\"Melinda Cooper\",\"orcid\":\"https://orcid.org/0000-0001-8341-8282\"},\"institutions\":[],\"countries\":[],\"is_corresponding\":false,\"raw_author_name\":\"Melinda Cooper\",\"raw_affiliation_string\":\"\",\"raw_affiliation_strings\":[]},{\"author_position\":\"last\",\"author\":{\"id\":\"https://openalex.org/A5053202470\",\"display_name\":\"Catherine Waldby\",\"orcid\":\"https://orcid.org/0000-0002-5989-9917\"},\"institutions\":[],\"countries\":[],\"is_corresponding\":false,\"raw_author_name\":\"Catherine Waldby\",\"raw_affiliation_string\":\"\",\"raw_affiliation_strings\":[]}],\"countries_distinct_count\":0,\"institutions_distinct_count\":0,\"corresponding_author_ids\":[],\"corresponding_institution_ids\":[],\"apc_list\":null,\"apc_paid\":null,\"has_fulltext\":false,\"cited_by_count\":406,\"cited_by_percentile_year\":{\"min\":99,\"max\":100},\"biblio\":{\"volume\":null,\"issue\":null,\"first_page\":null,\"last_page\":null},\"is_retracted\":false,\"is_paratext\":false,\"primary_topic\":{\"id\":\"https://openalex.org/T12664\",\"display_name\":\"Development and Evaluation of Clinical Guidelines\",\"score\":0.3247,\"subfield\":{\"id\":\"https://openalex.org/subfields/2739\",\"display_name\":\"Public Health, Environmental and Occupational Health\"},\"field\":{\"id\":\"https://openalex.org/fields/27\",\"display_name\":\"Medicine\"},\"domain\":{\"id\":\"https://openalex.org/domains/4\",\"display_name\":\"Health Sciences\"}},\"topics\":[{\"id\":\"https://openalex.org/T12664\",\"display_name\":\"Development and Evaluation of Clinical Guidelines\",\"score\":0.3247,\"subfield\":{\"id\":\"https://openalex.org/subfields/2739\",\"display_name\":\"Public Health, Environmental and Occupational Health\"},\"field\":{\"id\":\"https://openalex.org/fields/27\",\"display_name\":\"Medicine\"},\"domain\":{\"id\":\"https://openalex.org/domains/4\",\"display_name\":\"Health Sciences\"}}],\"keywords\":[{\"keyword\":\"labor\",\"score\":0.7357},{\"keyword\":\"clinical\",\"score\":0.6233}],\"concepts\":[{\"id\":\"https://openalex.org/C17744445\",\"wikidata\":\"https://www.wikidata.org/wiki/Q36442\",\"display_name\":\"Political science\",\"level\":0,\"score\":0.3224085}],\"mesh\":[],\"locations_count\":1,\"locations\":[{\"is_oa\":false,\"landing_page_url\":\"https://doi.org/10.1215/9780822377009\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S4306463122\",\"display_name\":\"Duke University Press eBooks\",\"issn_l\":null,\"issn\":null,\"is_oa\":false,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/P4310315698\",\"host_organization_name\":\"Duke University Press\",\"host_organization_lineage\":[\"https://openalex.org/P4310315572\",\"https://openalex.org/P4310315698\"],\"host_organization_lineage_names\":[\"Duke University\",\"Duke University Press\"],\"type\":\"ebook platform\"},\"license\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false}],\"best_oa_location\":null,\"sustainable_development_goals\":[{\"id\":\"https://metadata.un.org/sdg/8\",\"score\":0.45,\"display_name\":\"Decent work and economic growth\"}],\"grants\":[],\"referenced_works_count\":0,\"referenced_works\":[],\"related_works\":[\"https://openalex.org/W2748952813\",\"https://openalex.org/W2899084033\",\"https://openalex.org/W2955725829\",\"https://openalex.org/W2949263084\",\"https://openalex.org/W2743539335\",\"https://openalex.org/W2890326160\",\"https://openalex.org/W594353338\",\"https://openalex.org/W2724734218\",\"https://openalex.org/W4382466601\",\"https://openalex.org/W2922049016\"],\"ngrams_url\":\"https://api.openalex.org/works/W4234549826/ngrams\",\"abstract_inverted_index\":null,\"cited_by_api_url\":\"https://api.openalex.org/works?filter=cites:W4234549826\",\"counts_by_year\":[{\"year\":2023,\"cited_by_count\":11},{\"year\":2022,\"cited_by_count\":16},{\"year\":2021,\"cited_by_count\":45},{\"year\":2020,\"cited_by_count\":29},{\"year\":2019,\"cited_by_count\":61},{\"year\":2018,\"cited_by_count\":140},{\"year\":2017,\"cited_by_count\":41},{\"year\":2016,\"cited_by_count\":33},{\"year\":2015,\"cited_by_count\":23},{\"year\":2014,\"cited_by_count\":6},{\"year\":2012,\"cited_by_count\":1}],\"updated_date\":\"2024-02-22T22:31:09.009786\",\"created_date\":\"2022-05-12\"}\r\n",
"items": [
{
"itemType": "book",
"title": "Clinical Labor",
"creators": [
{
"firstName": "Melinda",
"lastName": "Cooper",
"creatorType": "author"
},
{
"firstName": "Catherine",
"lastName": "Waldby",
"creatorType": "author"
}
],
"date": "2014-01-01",
"extra": "OpenAlex: https://openalex.org/W4234549826",
"publisher": "Duke University Press",
"attachments": [],
"tags": [
{
"tag": "clinical"
},
{
"tag": "labor"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "{\"id\":\"https://openalex.org/W2257674859\",\"doi\":\"https://doi.org/10.18130/v3v002\",\"title\":\"The GULag and Laogai: A Comparative Study of Forced Labor through Camp Literature\",\"display_name\":\"The GULag and Laogai: A Comparative Study of Forced Labor through Camp Literature\",\"publication_year\":2017,\"publication_date\":\"2017-08-09\",\"ids\":{\"openalex\":\"https://openalex.org/W2257674859\",\"doi\":\"https://doi.org/10.18130/v3v002\",\"mag\":\"2257674859\"},\"language\":\"en\",\"primary_location\":{\"is_oa\":true,\"landing_page_url\":\"https://doi.org/10.18130/v3v002\",\"pdf_url\":\"https://libraetd.lib.virginia.edu/downloads/5425kb078?filename=Stepanic_Stanley_Dec2012.pdf\",\"source\":null,\"license\":null,\"version\":\"publishedVersion\",\"is_accepted\":true,\"is_published\":true},\"type\":\"dissertation\",\"type_crossref\":\"dissertation\",\"indexed_in\":[\"crossref\"],\"open_access\":{\"is_oa\":true,\"oa_status\":\"bronze\",\"oa_url\":\"https://libraetd.lib.virginia.edu/downloads/5425kb078?filename=Stepanic_Stanley_Dec2012.pdf\",\"any_repository_has_fulltext\":true},\"authorships\":[{\"author_position\":\"first\",\"author\":{\"id\":\"https://openalex.org/A5078709935\",\"display_name\":\"Stanley Joseph Stepanic\",\"orcid\":null},\"institutions\":[{\"id\":\"https://openalex.org/I51556381\",\"display_name\":\"University of Virginia\",\"ror\":\"https://ror.org/0153tk833\",\"country_code\":\"US\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I51556381\"]}],\"countries\":[\"US\"],\"is_corresponding\":true,\"raw_author_name\":\"Stanley Joseph Stepanic\",\"raw_affiliation_string\":\"University of Virginia\",\"raw_affiliation_strings\":[\"University of Virginia\"]}],\"countries_distinct_count\":1,\"institutions_distinct_count\":1,\"corresponding_author_ids\":[\"https://openalex.org/A5078709935\"],\"corresponding_institution_ids\":[\"https://openalex.org/I51556381\"],\"apc_list\":null,\"apc_paid\":null,\"has_fulltext\":true,\"fulltext_origin\":\"pdf\",\"cited_by_count\":1,\"cited_by_percentile_year\":{\"min\":70,\"max\":76},\"biblio\":{\"volume\":null,\"issue\":null,\"first_page\":null,\"last_page\":null},\"is_retracted\":false,\"is_paratext\":false,\"primary_topic\":{\"id\":\"https://openalex.org/T13802\",\"display_name\":\"Social and Cultural Development in Vietnam\",\"score\":0.9421,\"subfield\":{\"id\":\"https://openalex.org/subfields/3312\",\"display_name\":\"Sociology and Political Science\"},\"field\":{\"id\":\"https://openalex.org/fields/33\",\"display_name\":\"Social Sciences\"},\"domain\":{\"id\":\"https://openalex.org/domains/2\",\"display_name\":\"Social Sciences\"}},\"topics\":[{\"id\":\"https://openalex.org/T13802\",\"display_name\":\"Social and Cultural Development in Vietnam\",\"score\":0.9421,\"subfield\":{\"id\":\"https://openalex.org/subfields/3312\",\"display_name\":\"Sociology and Political Science\"},\"field\":{\"id\":\"https://openalex.org/fields/33\",\"display_name\":\"Social Sciences\"},\"domain\":{\"id\":\"https://openalex.org/domains/2\",\"display_name\":\"Social Sciences\"}},{\"id\":\"https://openalex.org/T10893\",\"display_name\":\"Religious Diversity and Regulation in Chinese Society\",\"score\":0.9331,\"subfield\":{\"id\":\"https://openalex.org/subfields/3312\",\"display_name\":\"Sociology and Political Science\"},\"field\":{\"id\":\"https://openalex.org/fields/33\",\"display_name\":\"Social Sciences\"},\"domain\":{\"id\":\"https://openalex.org/domains/2\",\"display_name\":\"Social Sciences\"}}],\"keywords\":[{\"keyword\":\"gulag\",\"score\":0.6365},{\"keyword\":\"forced labor\",\"score\":0.5605},{\"keyword\":\"camp\",\"score\":0.3939},{\"keyword\":\"laogai\",\"score\":0.3371}],\"concepts\":[{\"id\":\"https://openalex.org/C2776721811\",\"wikidata\":\"https://www.wikidata.org/wiki/Q161448\",\"display_name\":\"Gulag\",\"level\":2,\"score\":0.97338235},{\"id\":\"https://openalex.org/C95457728\",\"wikidata\":\"https://www.wikidata.org/wiki/Q309\",\"display_name\":\"History\",\"level\":0,\"score\":0.34109622},{\"id\":\"https://openalex.org/C17744445\",\"wikidata\":\"https://www.wikidata.org/wiki/Q36442\",\"display_name\":\"Political science\",\"level\":0,\"score\":0.33254576},{\"id\":\"https://openalex.org/C199539241\",\"wikidata\":\"https://www.wikidata.org/wiki/Q7748\",\"display_name\":\"Law\",\"level\":1,\"score\":0.12201893}],\"mesh\":[],\"locations_count\":1,\"locations\":[{\"is_oa\":true,\"landing_page_url\":\"https://doi.org/10.18130/v3v002\",\"pdf_url\":\"https://libraetd.lib.virginia.edu/downloads/5425kb078?filename=Stepanic_Stanley_Dec2012.pdf\",\"source\":null,\"license\":null,\"version\":\"publishedVersion\",\"is_accepted\":true,\"is_published\":true}],\"best_oa_location\":{\"is_oa\":true,\"landing_page_url\":\"https://doi.org/10.18130/v3v002\",\"pdf_url\":\"https://libraetd.lib.virginia.edu/downloads/5425kb078?filename=Stepanic_Stanley_Dec2012.pdf\",\"source\":null,\"license\":null,\"version\":\"publishedVersion\",\"is_accepted\":true,\"is_published\":true},\"sustainable_development_goals\":[{\"id\":\"https://metadata.un.org/sdg/8\",\"score\":0.67,\"display_name\":\"Decent work and economic growth\"}],\"grants\":[],\"referenced_works_count\":0,\"referenced_works\":[],\"related_works\":[\"https://openalex.org/W2748952813\",\"https://openalex.org/W2590215521\",\"https://openalex.org/W2331145549\",\"https://openalex.org/W1514633335\",\"https://openalex.org/W4200446317\",\"https://openalex.org/W3210235098\",\"https://openalex.org/W4386637648\",\"https://openalex.org/W4386051922\",\"https://openalex.org/W2932913126\",\"https://openalex.org/W1503036515\"],\"ngrams_url\":\"https://api.openalex.org/works/W2257674859/ngrams\",\"abstract_inverted_index\":{\"This\":[0,190],\"is\":[1,96,184,221,349,358,361,558,564,651,654],\"the\":[2,12,18,43,61,64,122,131,153,156,161,195,243,253,257,271,337,340,387,407,417,425,435,438,526,529,533,536,567,599,629,634,668,674,703,710,723,727,739],\"first\":[3,661],\"comparative\":[4],\"study\":[5],\"ever\":[6],\"undertaken\":[7],\"in\":[8,17,39,42,69,108,125,152,232,252,309,334,376,404,525,573,582,620,696,755],\"an\":[9,57],\"investigation\":[10],\"of\":[11,14,60,63,66,77,88,175,270,273,327,339,380,386,423,437,466,482,487,528,593,631,686,706,757],\"history\":[13,62,76],\"forced\":[15,67,89,296],\"labor\":[16,68,272],\"Soviet\":[19,126,154,310,575],\"Union\":[20],\"and\":[21,30,49,102,127,179,200,286,383,445,448,454,458,477,490,503,515,544,601,612,649,670,688,726,748],\"China.\":[22],\"It\":[23,207,653],\"makes\":[24],\"no\":[25],\"claims\":[26],\"to\":[27,36,54,97,115,144,193,226,236,247,260,292,297,303,306,316,352,397,473,492,498,509,511,523,566,586,613,729],\"be\":[28,217,234,304,353,398],\"exhaustive,\":[29],\"serves\":[31],\"mainly\":[32],\"as\":[33,104,148,617,691],\"a\":[34,74,137,228,377,401,590,646,684,732],\"foundation\":[35],\"further\":[37],\"work\":[38,191,293],\"this\":[40,198,321,348,557,562],\"subject\":[41],\"near\":[44],\"future.\":[45],\"Various\":[46],\"historical\":[47],\"works\":[48],\"documents\":[50],\"have\":[51,369,396],\"been\":[52,374,644,678],\"utilized\":[53],\"create,\":[55],\"firstly,\":[56],\"acceptable\":[58],\"overview\":[59],\"practice\":[65],\"both\":[70,111],\"countries,\":[71],\"followed\":[72],\"by\":[73,86,120,598],\"short\":[75],\"so\":[78,261],\"-\":[79,330,539,570,623,752],\"called\":[80],\"\\u2018camp\":[81],\"literature',\":[82],\"or\":[83,604,608,639],\"memoirs\":[84],\"written\":[85],\"survivors\":[87],\"labor,\":[90,611],\"generally\":[91],\"speaking.\":[92],\"The\":[93,574],\"main\":[94],\"focus\":[95],\"analyze\":[98],\"several\":[99,116,202],\"key\":[100],\"similarities\":[101],\"differences\":[103],\"they\":[105,676],\"are\":[106,290,412,496,585],\"found\":[107],\"examples\":[109],\"from\":[110,500,546],\"countries.\":[112],\"Differences\":[113],\"lead\":[114],\"interesting\":[117],\"points,\":[118],\"discovered\":[119],\"observing\":[121],\"narrative\":[123],\"persona\":[124],\"Chinese\":[128,132,254,647,740],\"examples.\":[129],\"On\":[130],\"side,\":[133],\"one\":[134,245,595],\"can\":[135],\"find\":[136],\"much\":[138],\"more\":[139],\"accepting\":[140],\"narrator,\":[141],\"who\":[142,281,289,312,549,596],\"seems\":[143],\"view\":[145],\"his\":[146,182,187,607],\"situation\":[147],\"somehow\":[149],\"necessary,\":[150],\"whereas\":[151],\"context\":[155],\"prisoner\":[157,258],\"almost\":[158],\"always\":[159],\"condemns\":[160],\"government.\":[162],\"Even\":[163],\"when\":[164],\"he\":[165,168,641,650],\"does\":[166,208,239,256],\"not,\":[167,250],\"at\":[169,223,450,461],\"least\":[170],\"suggests\":[171,181],\"that\":[172,230,346,365,393,434,714],\"some\":[173],\"sort\":[174,705],\"mistake\":[176],\"was\":[177,716,722,744],\"made\":[178],\"rarely\":[180],\"imprisonment\":[183],\"truly\":[185],\"for\":[186,197,204,278,287,370,410,456,480,532,673],\"own\":[188,610],\"good.\":[189],\"aims\":[192],\"investigate\":[194],\"reason\":[196],\"phenomenon\":[199],\"poses\":[201],\"reasons\":[203],\"its\":[205,467],\"existence.\":[206],\"not\":[209,363,391,432,471,507,521],\"provide\":[210],\"answers,\":[211],\"only\":[212,462],\"possibilities.\":[213],\"Further\":[214],\"research\":[215],\"will\":[216,324,343,550],\"required,\":[218],\"if\":[219],\"it\":[220,357,362,390,431,470,506,520,637],\"even\":[222,659],\"all\":[224,347],\"possible\":[225],\"answer\":[227],\"question\":[229],\"may,\":[231],\"fact,\":[233],\"impossible\":[235],\"prove.\":[237],\"Namely,\":[238],\"one's\":[240],\"culture\":[241],\"shape\":[242],\"way\":[244,322,728],\"tends\":[246],\"think?\":[248],\"If\":[633],\"why,\":[251],\"context,\":[255],\"seem\":[259],\"willingly\":[262],\"accept\":[263],\"their\":[264,671],\"situation?\":[265],\"W4\":[266],\"\\u2018mz\":[267],\"...make\":[268],\"use\":[269],\"those\":[274,279,288,307,746],\"persons\":[275],\"under\":[276],\"arrest,\\u2018\":[277],\"gentlemen\":[280],\"live\":[282],\"without\":[283,294,734],\"any\":[284],\"occupation,\\u2018\":[285],\"unable\":[291],\"being\":[295],\"do\":[298],\"so.\":[299],\"Such\":[300],\"punishment\":[301],\"ought\":[302],\"applied\":[305],\"working\":[308],\"institutions\":[311],\"demonstrate\":[313],\"unconscientious\":[314],\"attitudes\":[315],\"work,\":[317],\"tardiness,\":[318],\"etc.\":[319,428],\"...In\":[320],\"we\":[323],\"create\":[325],\"schools\":[326],\"labor.\":[328],\"1\":[329],\"Dzerzhinsky's\":[331],\"public\":[332],\"speech\":[333],\"1919\":[335],\"concerning\":[336,628],\"reeducation\":[338],\"bourgeois.\":[341],\"You\":[342],\"say,\":[344],\"perhaps,\":[345],\"too\":[350],\"stupid\":[351,364,392,433,472,508,522],\"true.\":[354,359],\"But,\":[355],\"unfortunately,\":[356],\"And\":[360],\"160,\":[366],\"000,000\":[367],\"people\":[368,616],\"eighteen\":[371],\"years\":[372],\"past\":[373],\"resident\":[375],\"vast\":[378],\"territory\":[379],\"good\":[381],\"soil\":[382],\"starving\":[384],\"most\":[385],\"time?\":[388],\"Is\":[389,430,469,505,519],\"three\":[394],\"families\":[395],\"crowded\":[399],\"into\":[400,589],\"single\":[402],\"room\":[403],\"Moscow,\":[405],\"while\":[406,484],\"millions\":[408,488],\"needed\":[409],\"housing\":[411],\"lavished\":[413],\"on\":[414,443],\"projects\":[415],\"like\":[416],\"\\u2018Palace\":[418],\"ofSoviets'\":[419],\"(The\":[420],\"Communist\":[421],\"Tower\":[422],\"Babel),\":[424],\"\\u2018Dynamo\":[426],\"',\":[427],\"?\":[429],\"construction\":[436],\"Dniepostroi\":[439],\"Water\":[440],\"Plant\":[441],\"went\":[442,701],\"day\":[444],\"night,\":[446],\"winter\":[447],\"summer,\":[449],\"enormous\":[451],\"sacrifice\":[452],\"oflives\":[453],\"money\":[455],\"years,\":[457],\"now\":[459],\"functions\":[460],\"twelve\":[463],\"per\":[464],\"cent\":[465],\"capacity?\":[468],\"let\":[474],\"horses,\":[475],\"cows,\":[476],\"pigs\":[478],\"starve\":[479],\"lack\":[481],\"fodder\":[483],\"spending\":[485],\"tens\":[486],\"importing\":[489],\"trying\":[491],\"breed\":[493],\"rabbits,\":[494],\"which\":[495],\"certain\":[497],\"succumb\":[499],\"unsuitable\":[501],\"food\":[502],\"climate?\":[504],\"try\":[510],\"domesticate\":[512],\"Karelian\":[513],\"elks\":[514],\"Kamchatka\":[516],\"bears\":[517],\"instead?\":[518],\"import,\":[524],\"vicinity\":[527],\"Arctic\":[530],\"Circle,\":[531],\"purpose\":[534],\"ofbuilding\":[535],\"White\":[537],\"Sea\":[538],\"Baltic\":[540],\"Canal,\":[541],\"60,000\":[542],\"Usbeks\":[543],\"Khirghizians\":[545],\"southern\":[547],\"Russia\":[548],\"probably\":[551],\"perish\":[552],\"within\":[553],\"six\":[554],\"months?\":[555],\"All\":[556],\"revoltingly\":[559],\"stupid,\":[560],\"but\":[561,708],\"stupidity\":[563],\"armed\":[565],\"teeth.\":[568],\"2\":[569],\"Ivan\":[571],\"Solonevich\":[572],\"Paradise\":[576],\"Lost.\":[577],\"China\":[578],\"'s\":[579],\"basic\":[580],\"goals\":[581],\"criminal\":[583],\"reform\":[584],\"turn\":[587],\"ojfenders\":[588],\"dijferent\":[591],\"kind\":[592],\"person,\":[594],\"abides\":[597],\"law\":[600],\"supports\":[602],\"himself\":[603],\"herself\":[605],\"with\":[606,683,692],\"her\":[609],\"reestablish\":[614],\"these\":[615],\"free\":[618],\"citizens\":[619],\"society.\":[621],\"3\":[622],\"Beijing's\":[624],\"official\":[625],\"political\":[626],\"statement\":[627],\"existence\":[630],\"Laogai.\":[632],\"reader\":[635],\"finds\":[636],\"preposterous\":[638],\"exaggerated,\":[640],\"has\":[642],\"never\":[643],\"inside\":[645],\"prison,\":[648],\"lucky.\":[652],\"utterly\":[655],\"typical\":[656],\"ofthat\":[657],\"country,\":[658],\"today...The\":[660],\"times\":[662],\"I\":[663,680,700,715,737,743],\"encountered\":[664],\"prisoners\":[665],\"actually\":[666],\"thanking\":[667],\"government\":[669],\"jailers\":[672],\"sentences\":[675],\"had\":[677],\"given,\":[679],\"regarded\":[681],\"them\":[682],\"mixture\":[685],\"astonishment\":[687],\"scorn.\":[689],\"Later,\":[690],\"my\":[693,719],\"Ideological\":[694],\"Reviews\":[695],\"Prison\":[697],\"Number\":[698],\"One,\":[699],\"through\":[702,731],\"same\":[704],\"motions,\":[707],\"maintained\":[709],\"small\":[711],\"mental\":[712],\"reserve\":[713],\"onbz\":[717],\"protecting\":[718],\"skin:\":[720],\"That\":[721],\"form\":[724],\"expected\":[725],\"go\":[730],\"sentence\":[733],\"trouble.\":[735],\"Before\":[736],\"left\":[738],\"jails,\":[741],\"though,\":[742],\"writing\":[745],\"phrases\":[747],\"believing\":[749],\"them.\":[750],\"4\":[751],\"Bao\":[753],\"Ruo-Wang\":[754],\"Prisoner\":[756],\"Mao.\":[758]},\"cited_by_api_url\":\"https://api.openalex.org/works?filter=cites:W2257674859\",\"counts_by_year\":[{\"year\":2013,\"cited_by_count\":1}],\"updated_date\":\"2024-02-20T18:51:19.096305\",\"created_date\":\"2016-06-24\"}\r\n",
"items": [
{
"itemType": "thesis",
"title": "The GULag and Laogai: A Comparative Study of Forced Labor through Camp Literature",
"creators": [
{
"firstName": "Stanley Joseph",
"lastName": "Stepanic",
"creatorType": "author"
}
],
"date": "2017-08-09",
"extra": "OpenAlex: https://openalex.org/W2257674859",
"language": "en",
"university": "University of Virginia",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "camp"
},
{
"tag": "forced labor"
},
{
"tag": "gulag"
},
{
"tag": "laogai"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "{\"meta\":{\"count\":5,\"db_response_time_ms\":444,\"page\":1,\"per_page\":25,\"groups_count\":null},\"results\":[{\"id\":\"https://openalex.org/W2046245907\",\"doi\":\"https://doi.org/10.1109/tau.1965.1161805\",\"title\":\"On the audibility of amplifier phase distortion\",\"display_name\":\"On the audibility of amplifier phase distortion\",\"relevance_score\":0.99999994,\"publication_year\":1965,\"publication_date\":\"1965-07-01\",\"ids\":{\"openalex\":\"https://openalex.org/W2046245907\",\"doi\":\"https://doi.org/10.1109/tau.1965.1161805\",\"mag\":\"2046245907\"},\"language\":\"en\",\"primary_location\":{\"is_oa\":false,\"landing_page_url\":\"https://doi.org/10.1109/tau.1965.1161805\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S186564409\",\"display_name\":\"IEEE Transactions on Audio\",\"issn_l\":\"0096-1620\",\"issn\":[\"1558-2663\",\"0096-1620\"],\"is_oa\":false,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/P4310319808\",\"host_organization_name\":\"Institute of Electrical and Electronics Engineers\",\"host_organization_lineage\":[\"https://openalex.org/P4310319808\"],\"host_organization_lineage_names\":[\"Institute of Electrical and Electronics Engineers\"],\"type\":\"journal\"},\"license\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false},\"type\":\"article\",\"type_crossref\":\"journal-article\",\"indexed_in\":[\"crossref\"],\"open_access\":{\"is_oa\":false,\"oa_status\":\"closed\",\"oa_url\":null,\"any_repository_has_fulltext\":false},\"authorships\":[{\"author_position\":\"first\",\"author\":{\"id\":\"https://openalex.org/A5025692314\",\"display_name\":\"G. Wentworth\",\"orcid\":null},\"institutions\":[],\"countries\":[],\"is_corresponding\":true,\"raw_author_name\":\"G. Wentworth\",\"raw_affiliation_string\":\"Ridgmar Blvd. Fort Worth, Tex\",\"raw_affiliation_strings\":[\"Ridgmar Blvd. Fort Worth, Tex\"]}],\"countries_distinct_count\":0,\"institutions_distinct_count\":0,\"corresponding_author_ids\":[\"https://openalex.org/A5025692314\"],\"corresponding_institution_ids\":[],\"apc_list\":null,\"apc_paid\":null,\"has_fulltext\":true,\"fulltext_origin\":\"ngrams\",\"cited_by_count\":2,\"cited_by_percentile_year\":{\"min\":74,\"max\":78},\"biblio\":{\"volume\":\"AU-13\",\"issue\":\"4\",\"first_page\":\"99\",\"last_page\":\"99\"},\"is_retracted\":false,\"is_paratext\":false,\"primary_topic\":{\"id\":\"https://openalex.org/T10688\",\"display_name\":\"Image Denoising Techniques and Algorithms\",\"score\":0.5802,\"subfield\":{\"id\":\"https://openalex.org/subfields/1707\",\"display_name\":\"Computer Vision and Pattern Recognition\"},\"field\":{\"id\":\"https://openalex.org/fields/17\",\"display_name\":\"Computer Science\"},\"domain\":{\"id\":\"https://openalex.org/domains/3\",\"display_name\":\"Physical Sciences\"}},\"topics\":[{\"id\":\"https://openalex.org/T10688\",\"display_name\":\"Image Denoising Techniques and Algorithms\",\"score\":0.5802,\"subfield\":{\"id\":\"https://openalex.org/subfields/1707\",\"display_name\":\"Computer Vision and Pattern Recognition\"},\"field\":{\"id\":\"https://openalex.org/fields/17\",\"display_name\":\"Computer Science\"},\"domain\":{\"id\":\"https://openalex.org/domains/3\",\"display_name\":\"Physical Sciences\"}},{\"id\":\"https://openalex.org/T13493\",\"display_name\":\"Acousto-Optic Interaction in Crystalline Materials\",\"score\":0.5614,\"subfield\":{\"id\":\"https://openalex.org/subfields/3107\",\"display_name\":\"Atomic and Molecular Physics, and Optics\"},\"field\":{\"id\":\"https://openalex.org/fields/31\",\"display_name\":\"Physics and Astronomy\"},\"domain\":{\"id\":\"https://openalex.org/domains/3\",\"display_name\":\"Physical Sciences\"}},{\"id\":\"https://openalex.org/T10662\",\"display_name\":\"Guided Wave Structural Health Monitoring in Materials\",\"score\":0.5351,\"subfield\":{\"id\":\"https://openalex.org/subfields/2211\",\"display_name\":\"Mechanics of Materials\"},\"field\":{\"id\":\"https://openalex.org/fields/22\",\"display_name\":\"Engineering\"},\"domain\":{\"id\":\"https://openalex.org/domains/3\",\"display_name\":\"Physical Sciences\"}}],\"keywords\":[{\"keyword\":\"amplifier phase distortion\",\"score\":0.8078},{\"keyword\":\"audibility\",\"score\":0.5295}],\"concepts\":[{\"id\":\"https://openalex.org/C194257627\",\"wikidata\":\"https://www.wikidata.org/wiki/Q211554\",\"display_name\":\"Amplifier\",\"level\":3,\"score\":0.66258776},{\"id\":\"https://openalex.org/C126780896\",\"wikidata\":\"https://www.wikidata.org/wiki/Q899871\",\"display_name\":\"Distortion (music)\",\"level\":4,\"score\":0.65470827},{\"id\":\"https://openalex.org/C57747864\",\"wikidata\":\"https://www.wikidata.org/wiki/Q7180948\",\"display_name\":\"Phase distortion\",\"level\":3,\"score\":0.60850114},{\"id\":\"https://openalex.org/C44280652\",\"wikidata\":\"https://www.wikidata.org/wiki/Q104837\",\"display_name\":\"Phase (matter)\",\"level\":2,\"score\":0.51192963},{\"id\":\"https://openalex.org/C24890656\",\"wikidata\":\"https://www.wikidata.org/wiki/Q82811\",\"display_name\":\"Acoustics\",\"level\":1,\"score\":0.477577},{\"id\":\"https://openalex.org/C192562407\",\"wikidata\":\"https://www.wikidata.org/wiki/Q228736\",\"display_name\":\"Materials science\",\"level\":0,\"score\":0.44682446},{\"id\":\"https://openalex.org/C119599485\",\"wikidata\":\"https://www.wikidata.org/wiki/Q43035\",\"display_name\":\"Electrical engineering\",\"level\":1,\"score\":0.43042603},{\"id\":\"https://openalex.org/C121332964\",\"wikidata\":\"https://www.wikidata.org/wiki/Q413\",\"display_name\":\"Physics\",\"level\":0,\"score\":0.34204704},{\"id\":\"https://openalex.org/C127413603\",\"wikidata\":\"https://www.wikidata.org/wiki/Q11023\",\"display_name\":\"Engineering\",\"level\":0,\"score\":0.33855706},{\"id\":\"https://openalex.org/C106131492\",\"wikidata\":\"https://www.wikidata.org/wiki/Q3072260\",\"display_name\":\"Filter (signal processing)\",\"level\":2,\"score\":0.09166792},{\"id\":\"https://openalex.org/C46362747\",\"wikidata\":\"https://www.wikidata.org/wiki/Q173431\",\"display_name\":\"CMOS\",\"level\":2,\"score\":0.0},{\"id\":\"https://openalex.org/C62520636\",\"wikidata\":\"https://www.wikidata.org/wiki/Q944\",\"display_name\":\"Quantum mechanics\",\"level\":1,\"score\":0.0}],\"mesh\":[],\"locations_count\":1,\"locations\":[{\"is_oa\":false,\"landing_page_url\":\"https://doi.org/10.1109/tau.1965.1161805\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S186564409\",\"display_name\":\"IEEE Transactions on Audio\",\"issn_l\":\"0096-1620\",\"issn\":[\"1558-2663\",\"0096-1620\"],\"is_oa\":false,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/P4310319808\",\"host_organization_name\":\"Institute of Electrical and Electronics Engineers\",\"host_organization_lineage\":[\"https://openalex.org/P4310319808\"],\"host_organization_lineage_names\":[\"Institute of Electrical and Electronics Engineers\"],\"type\":\"journal\"},\"license\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false}],\"best_oa_location\":null,\"sustainable_development_goals\":[{\"score\":0.74,\"id\":\"https://metadata.un.org/sdg/7\",\"display_name\":\"Affordable and clean energy\"}],\"grants\":[],\"referenced_works_count\":0,\"referenced_works\":[],\"related_works\":[\"https://openalex.org/W2116460786\",\"https://openalex.org/W2626065499\",\"https://openalex.org/W2074878601\",\"https://openalex.org/W1918166830\",\"https://openalex.org/W2060986946\",\"https://openalex.org/W2136031634\",\"https://openalex.org/W2084404188\",\"https://openalex.org/W4247383620\",\"https://openalex.org/W3113937270\",\"https://openalex.org/W1568978649\"],\"ngrams_url\":\"https://api.openalex.org/works/W2046245907/ngrams\",\"abstract_inverted_index\":null,\"cited_by_api_url\":\"https://api.openalex.org/works?filter=cites:W2046245907\",\"counts_by_year\":[],\"updated_date\":\"2024-02-27T07:19:02.045114\",\"created_date\":\"2016-06-24\"},{\"id\":\"https://openalex.org/W4237963058\",\"doi\":\"https://doi.org/10.1056/nejm198301133080228\",\"title\":\"Notices\",\"display_name\":\"Notices\",\"relevance_score\":0.99999994,\"publication_year\":1983,\"publication_date\":\"1983-01-13\",\"ids\":{\"openalex\":\"https://openalex.org/W4237963058\",\"doi\":\"https://doi.org/10.1056/nejm198301133080228\"},\"language\":null,\"primary_location\":{\"is_oa\":false,\"landing_page_url\":\"https://doi.org/10.1056/nejm198301133080228\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S62468778\",\"display_name\":\"The New England Journal of Medicine\",\"issn_l\":\"0028-4793\",\"issn\":[\"0028-4793\",\"1533-4406\"],\"is_oa\":false,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/P4310320239\",\"host_organization_name\":\"Massachusetts Medical Society\",\"host_organization_lineage\":[\"https://openalex.org/P4310320239\"],\"host_organization_lineage_names\":[\"Massachusetts Medical Society\"],\"type\":\"journal\"},\"license\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false},\"type\":\"article\",\"type_crossref\":\"journal-article\",\"indexed_in\":[\"crossref\"],\"open_access\":{\"is_oa\":false,\"oa_status\":\"closed\",\"oa_url\":null,\"any_repository_has_fulltext\":false},\"authorships\":[],\"countries_distinct_count\":0,\"institutions_distinct_count\":0,\"corresponding_author_ids\":[],\"corresponding_institution_ids\":[],\"apc_list\":null,\"apc_paid\":null,\"has_fulltext\":false,\"cited_by_count\":0,\"cited_by_percentile_year\":{\"min\":0,\"max\":60},\"biblio\":{\"volume\":\"308\",\"issue\":\"2\",\"first_page\":\"112\",\"last_page\":\"112\"},\"is_retracted\":false,\"is_paratext\":false,\"primary_topic\":null,\"topics\":[],\"keywords\":[],\"concepts\":[{\"id\":\"https://openalex.org/C71924100\",\"wikidata\":\"https://www.wikidata.org/wiki/Q11190\",\"display_name\":\"Medicine\",\"level\":0,\"score\":0.90406847}],\"mesh\":[],\"locations_count\":1,\"locations\":[{\"is_oa\":false,\"landing_page_url\":\"https://doi.org/10.1056/nejm198301133080228\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S62468778\",\"display_name\":\"The New England Journal of Medicine\",\"issn_l\":\"0028-4793\",\"issn\":[\"0028-4793\",\"1533-4406\"],\"is_oa\":false,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/P4310320239\",\"host_organization_name\":\"Massachusetts Medical Society\",\"host_organization_lineage\":[\"https://openalex.org/P4310320239\"],\"host_organization_lineage_names\":[\"Massachusetts Medical Society\"],\"type\":\"journal\"},\"license\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false}],\"best_oa_location\":null,\"sustainable_development_goals\":[],\"grants\":[],\"referenced_works_count\":0,\"referenced_works\":[],\"related_works\":[\"https://openalex.org/W2048182022\",\"https://openalex.org/W2748952813\",\"https://openalex.org/W2899084033\",\"https://openalex.org/W3032375762\",\"https://openalex.org/W1995515455\",\"https://openalex.org/W2080531066\",\"https://openalex.org/W3108674512\",\"https://openalex.org/W1506200166\",\"https://openalex.org/W2604872355\",\"https://openalex.org/W3031052312\"],\"ngrams_url\":\"https://api.openalex.org/works/W4237963058/ngrams\",\"abstract_inverted_index\":null,\"cited_by_api_url\":\"https://api.openalex.org/works?filter=cites:W4237963058\",\"counts_by_year\":[],\"updated_date\":\"2024-03-03T21:00:09.353994\",\"created_date\":\"2022-05-12\"},{\"id\":\"https://openalex.org/W4239223537\",\"doi\":\"https://doi.org/10.4018/978-1-7998-7705-9.ch090\",\"title\":\"The Big Data Research Ecosystem\",\"display_name\":\"The Big Data Research Ecosystem\",\"relevance_score\":0.99999994,\"publication_year\":2020,\"publication_date\":\"2020-11-27\",\"ids\":{\"openalex\":\"https://openalex.org/W4239223537\",\"doi\":\"https://doi.org/10.4018/978-1-7998-7705-9.ch090\"},\"language\":\"en\",\"primary_location\":{\"is_oa\":false,\"landing_page_url\":\"https://doi.org/10.4018/978-1-7998-7705-9.ch090\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S4306463409\",\"display_name\":\"IGI Global eBooks\",\"issn_l\":null,\"issn\":null,\"is_oa\":false,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/P4310320424\",\"host_organization_name\":\"IGI Global\",\"host_organization_lineage\":[\"https://openalex.org/P4310320424\"],\"host_organization_lineage_names\":[\"IGI Global\"],\"type\":\"ebook platform\"},\"license\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false},\"type\":\"book-chapter\",\"type_crossref\":\"book-chapter\",\"indexed_in\":[\"crossref\"],\"open_access\":{\"is_oa\":false,\"oa_status\":\"closed\",\"oa_url\":null,\"any_repository_has_fulltext\":false},\"authorships\":[{\"author_position\":\"first\",\"author\":{\"id\":\"https://openalex.org/A5079822857\",\"display_name\":\"Moses John Strydom\",\"orcid\":\"https://orcid.org/0000-0002-8865-7474\"},\"institutions\":[{\"id\":\"https://openalex.org/I165390105\",\"display_name\":\"University of South Africa\",\"ror\":\"https://ror.org/048cwvf49\",\"country_code\":\"ZA\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I165390105\"]}],\"countries\":[\"ZA\"],\"is_corresponding\":false,\"raw_author_name\":\"Moses John Strydom\",\"raw_affiliation_string\":\"University of South Africa, South Africa\",\"raw_affiliation_strings\":[\"University of South Africa, South Africa\"]},{\"author_position\":\"last\",\"author\":{\"id\":\"https://openalex.org/A5016670485\",\"display_name\":\"Sheryl Buckley\",\"orcid\":\"https://orcid.org/0000-0002-2393-4741\"},\"institutions\":[{\"id\":\"https://openalex.org/I165390105\",\"display_name\":\"University of South Africa\",\"ror\":\"https://ror.org/048cwvf49\",\"country_code\":\"ZA\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I165390105\"]}],\"countries\":[\"ZA\"],\"is_corresponding\":false,\"raw_author_name\":\"Sheryl Buckley\",\"raw_affiliation_string\":\"University of South Africa, South Africa\",\"raw_affiliation_strings\":[\"University of South Africa, South Africa\"]}],\"countries_distinct_count\":1,\"institutions_distinct_count\":1,\"corresponding_author_ids\":[],\"corresponding_institution_ids\":[],\"apc_list\":null,\"apc_paid\":null,\"has_fulltext\":false,\"cited_by_count\":0,\"cited_by_percentile_year\":{\"min\":0,\"max\":67},\"biblio\":{\"volume\":null,\"issue\":null,\"first_page\":\"2027\",\"last_page\":\"2057\"},\"is_retracted\":false,\"is_paratext\":false,\"primary_topic\":{\"id\":\"https://openalex.org/T11891\",\"display_name\":\"Impact of Big Data Analytics on Business Performance\",\"score\":0.9997,\"subfield\":{\"id\":\"https://openalex.org/subfields/1404\",\"display_name\":\"Management Information Systems\"},\"field\":{\"id\":\"https://openalex.org/fields/14\",\"display_name\":\"Business, Management and Accounting\"},\"domain\":{\"id\":\"https://openalex.org/domains/2\",\"display_name\":\"Social Sciences\"}},\"topics\":[{\"id\":\"https://openalex.org/T11891\",\"display_name\":\"Impact of Big Data Analytics on Business Performance\",\"score\":0.9997,\"subfield\":{\"id\":\"https://openalex.org/subfields/1404\",\"display_name\":\"Management Information Systems\"},\"field\":{\"id\":\"https://openalex.org/fields/14\",\"display_name\":\"Business, Management and Accounting\"},\"domain\":{\"id\":\"https://openalex.org/domains/2\",\"display_name\":\"Social Sciences\"}},{\"id\":\"https://openalex.org/T14280\",\"display_name\":\"Impact of Big Data on Society and Industry\",\"score\":0.9881,\"subfield\":{\"id\":\"https://openalex.org/subfields/1802\",\"display_name\":\"Information Systems and Management\"},\"field\":{\"id\":\"https://openalex.org/fields/18\",\"display_name\":\"Decision Sciences\"},\"domain\":{\"id\":\"https://openalex.org/domains/2\",\"display_name\":\"Social Sciences\"}},{\"id\":\"https://openalex.org/T11719\",\"display_name\":\"Data Quality Assessment and Improvement\",\"score\":0.9859,\"subfield\":{\"id\":\"https://openalex.org/subfields/1803\",\"display_name\":\"Management Science and Operations Research\"},\"field\":{\"id\":\"https://openalex.org/fields/18\",\"display_name\":\"Decision Sciences\"},\"domain\":{\"id\":\"https://openalex.org/domains/2\",\"display_name\":\"Social Sciences\"}}],\"keywords\":[{\"keyword\":\"big data research ecosystem\",\"score\":0.9748},{\"keyword\":\"big data\",\"score\":0.6606}],\"concepts\":[{\"id\":\"https://openalex.org/C75684735\",\"wikidata\":\"https://www.wikidata.org/wiki/Q858810\",\"display_name\":\"Big data\",\"level\":2,\"score\":0.8965882},{\"id\":\"https://openalex.org/C2522767166\",\"wikidata\":\"https://www.wikidata.org/wiki/Q2374463\",\"display_name\":\"Data science\",\"level\":1,\"score\":0.73832947},{\"id\":\"https://openalex.org/C9652623\",\"wikidata\":\"https://www.wikidata.org/wiki/Q190109\",\"display_name\":\"Field (mathematics)\",\"level\":2,\"score\":0.63086545},{\"id\":\"https://openalex.org/C63882131\",\"wikidata\":\"https://www.wikidata.org/wiki/Q17122954\",\"display_name\":\"Strengths and weaknesses\",\"level\":2,\"score\":0.5127207},{\"id\":\"https://openalex.org/C2776291640\",\"wikidata\":\"https://www.wikidata.org/wiki/Q2912517\",\"display_name\":\"Value (mathematics)\",\"level\":2,\"score\":0.500679},{\"id\":\"https://openalex.org/C98045186\",\"wikidata\":\"https://www.wikidata.org/wiki/Q205663\",\"display_name\":\"Process (computing)\",\"level\":2,\"score\":0.47819757},{\"id\":\"https://openalex.org/C539667460\",\"wikidata\":\"https://www.wikidata.org/wiki/Q2414942\",\"display_name\":\"Management science\",\"level\":1,\"score\":0.3904409},{\"id\":\"https://openalex.org/C41008148\",\"wikidata\":\"https://www.wikidata.org/wiki/Q21198\",\"display_name\":\"Computer science\",\"level\":0,\"score\":0.38717905},{\"id\":\"https://openalex.org/C55587333\",\"wikidata\":\"https://www.wikidata.org/wiki/Q1133029\",\"display_name\":\"Engineering ethics\",\"level\":1,\"score\":0.33696997},{\"id\":\"https://openalex.org/C127413603\",\"wikidata\":\"https://www.wikidata.org/wiki/Q11023\",\"display_name\":\"Engineering\",\"level\":0,\"score\":0.20919424},{\"id\":\"https://openalex.org/C124101348\",\"wikidata\":\"https://www.wikidata.org/wiki/Q172491\",\"display_name\":\"Data mining\",\"level\":1,\"score\":0.09868121},{\"id\":\"https://openalex.org/C111472728\",\"wikidata\":\"https://www.wikidata.org/wiki/Q9471\",\"display_name\":\"Epistemology\",\"level\":1,\"score\":0.09483838},{\"id\":\"https://openalex.org/C33923547\",\"wikidata\":\"https://www.wikidata.org/wiki/Q395\",\"display_name\":\"Mathematics\",\"level\":0,\"score\":0.0},{\"id\":\"https://openalex.org/C119857082\",\"wikidata\":\"https://www.wikidata.org/wiki/Q2539\",\"display_name\":\"Machine learning\",\"level\":1,\"score\":0.0},{\"id\":\"https://openalex.org/C202444582\",\"wikidata\":\"https://www.wikidata.org/wiki/Q837863\",\"display_name\":\"Pure mathematics\",\"level\":1,\"score\":0.0},{\"id\":\"https://openalex.org/C111919701\",\"wikidata\":\"https://www.wikidata.org/wiki/Q9135\",\"display_name\":\"Operating system\",\"level\":1,\"score\":0.0},{\"id\":\"https://openalex.org/C138885662\",\"wikidata\":\"https://www.wikidata.org/wiki/Q5891\",\"display_name\":\"Philosophy\",\"level\":0,\"score\":0.0}],\"mesh\":[],\"locations_count\":1,\"locations\":[{\"is_oa\":false,\"landing_page_url\":\"https://doi.org/10.4018/978-1-7998-7705-9.ch090\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S4306463409\",\"display_name\":\"IGI Global eBooks\",\"issn_l\":null,\"issn\":null,\"is_oa\":false,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/P4310320424\",\"host_organization_name\":\"IGI Global\",\"host_organization_lineage\":[\"https://openalex.org/P4310320424\"],\"host_organization_lineage_names\":[\"IGI Global\"],\"type\":\"ebook platform\"},\"license\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false}],\"best_oa_location\":null,\"sustainable_development_goals\":[],\"grants\":[],\"referenced_works_count\":55,\"referenced_works\":[\"https://openalex.org/W174892117\",\"https://openalex.org/W841229804\",\"https://openalex.org/W916305875\",\"https://openalex.org/W1177011000\",\"https://openalex.org/W1729469618\",\"https://openalex.org/W1967228906\",\"https://openalex.org/W2007338412\",\"https://openalex.org/W2043896876\",\"https://openalex.org/W2109574129\",\"https://openalex.org/W2118023920\",\"https://openalex.org/W2159128662\",\"https://openalex.org/W2202488771\",\"https://openalex.org/W2261525379\",\"https://openalex.org/W2269816967\",\"https://openalex.org/W2276640131\",\"https://openalex.org/W2287388632\",\"https://openalex.org/W2290480557\",\"https://openalex.org/W2307193480\",\"https://openalex.org/W2379922473\",\"https://openalex.org/W2393015989\",\"https://openalex.org/W2395492686\",\"https://openalex.org/W2398958885\",\"https://openalex.org/W2412675936\",\"https://openalex.org/W2417029388\",\"https://openalex.org/W2468725466\",\"https://openalex.org/W2506205276\",\"https://openalex.org/W2529628152\",\"https://openalex.org/W2533835508\",\"https://openalex.org/W2557108776\",\"https://openalex.org/W2571665755\",\"https://openalex.org/W2582605192\",\"https://openalex.org/W2583655187\",\"https://openalex.org/W2589699175\",\"https://openalex.org/W2593865443\",\"https://openalex.org/W2603280631\",\"https://openalex.org/W2605195075\",\"https://openalex.org/W2605610514\",\"https://openalex.org/W2605660454\",\"https://openalex.org/W2624543473\",\"https://openalex.org/W2734575787\",\"https://openalex.org/W2736503637\",\"https://openalex.org/W2739265471\",\"https://openalex.org/W2750764235\",\"https://openalex.org/W2753588101\",\"https://openalex.org/W2755741740\",\"https://openalex.org/W2763310390\",\"https://openalex.org/W2763473974\",\"https://openalex.org/W2765564498\",\"https://openalex.org/W2766908073\",\"https://openalex.org/W2767547957\",\"https://openalex.org/W2772452442\",\"https://openalex.org/W2774112958\",\"https://openalex.org/W2788448133\",\"https://openalex.org/W2802730911\",\"https://openalex.org/W3099185017\"],\"related_works\":[\"https://openalex.org/W4390608645\",\"https://openalex.org/W4233347783\",\"https://openalex.org/W4295769391\",\"https://openalex.org/W4247566972\",\"https://openalex.org/W2960264696\",\"https://openalex.org/W3090563135\",\"https://openalex.org/W2497432351\",\"https://openalex.org/W4206777497\",\"https://openalex.org/W2972220648\",\"https://openalex.org/W2910064364\"],\"ngrams_url\":\"https://api.openalex.org/works/W4239223537/ngrams\",\"abstract_inverted_index\":{\"Big\":[0],\"data\":[1,28,102,127],\"is\":[2,30,34],\"the\":[3,26,53,96],\"emerging\":[4],\"field\":[5,54,99],\"where\":[6],\"innovative\":[7],\"technology\":[8,46],\"offers\":[9],\"new\":[10],\"ways\":[11],\"to\":[12,36,55,110,141],\"extract\":[13],\"value\":[14],\"from\":[15],\"an\":[16,88],\"unequivocal\":[17],\"plethora\":[18],\"of\":[19,74,92,100,113,125],\"available\":[20],\"information.\":[21],\"By\":[22],\"its\":[23],\"fundamental\":[24],\"characteristic,\":[25],\"big\":[27,101,126,143],\"ecosystem\":[29],\"highly\":[31],\"conjectural\":[32],\"and\":[33,38,47,67,82,116,134,138],\"susceptible\":[35],\"continuous\":[37],\"rapid\":[39],\"evolution\":[40],\"in\":[41,45,57,95,122],\"line\":[42],\"with\":[43],\"developments\":[44],\"opportunities,\":[48],\"a\":[49,71],\"situation\":[50],\"that\":[51],\"predisposes\":[52],\"research\":[56,103],\"very\":[58],\"brief\":[59],\"time\":[60],\"spans.\":[61],\"Against\":[62],\"this\":[63],\"background,\":[64],\"both\":[65],\"academics\":[66],\"practitioners\":[68],\"oddly\":[69],\"have\":[70],\"limited\":[72],\"understanding\":[73],\"how\":[75],\"organizations\":[76],\"translate\":[77],\"potential\":[78],\"into\":[79],\"actual\":[80],\"social\":[81],\"economic\":[83],\"value.\":[84],\"This\":[85],\"chapter\":[86],\"conducts\":[87],\"in-depth\":[89],\"systematic\":[90],\"review\":[91],\"existing\":[93],\"penchants\":[94],\"rapidly\":[97],\"developing\":[98],\"and,\":[104],\"thereafter,\":[105],\"systematically\":[106],\"reviewed\":[107],\"these\":[108],\"studies\":[109],\"identify\":[111],\"some\":[112],\"their\":[114],\"weaknesses\":[115],\"challenges.\":[117],\"The\":[118],\"authors\":[119],\"argue\":[120],\"that,\":[121],\"practice,\":[123],\"most\":[124],\"surveys\":[128],\"do\":[129],\"not\":[130],\"focus\":[131],\"on\":[132],\"technologies,\":[133],\"instead\":[135],\"present\":[136],\"algorithms\":[137],\"approaches\":[139],\"employed\":[140],\"process\":[142],\"data.\":[144]},\"cited_by_api_url\":\"https://api.openalex.org/works?filter=cites:W4239223537\",\"counts_by_year\":[],\"updated_date\":\"2024-02-25T19:34:08.400474\",\"created_date\":\"2022-05-12\"},{\"id\":\"https://openalex.org/W78857221\",\"doi\":null,\"title\":\"RELATIVE BIOLOGICAL EFFECTIVENESS OF HIGH ENERGY PROTONS AFFECTING CABBAGE SEEDS\",\"display_name\":\"RELATIVE BIOLOGICAL EFFECTIVENESS OF HIGH ENERGY PROTONS AFFECTING CABBAGE SEEDS\",\"relevance_score\":0.99999994,\"publication_year\":1966,\"publication_date\":\"1966-08-01\",\"ids\":{\"openalex\":\"https://openalex.org/W78857221\",\"mag\":\"78857221\"},\"language\":\"de\",\"primary_location\":{\"is_oa\":false,\"landing_page_url\":\"http://www.osti.gov/scitech/biblio/4528110\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S4210171837\",\"display_name\":\"Genetika\",\"issn_l\":\"0534-0012\",\"issn\":[\"1820-6069\",\"0534-0012\"],\"is_oa\":true,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/P4310321594\",\"host_organization_name\":\"Serbian Genetics Society\",\"host_organization_lineage\":[\"https://openalex.org/P4310321594\"],\"host_organization_lineage_names\":[\"Serbian Genetics Society\"],\"type\":\"journal\"},\"license\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false},\"type\":\"article\",\"type_crossref\":\"journal-article\",\"indexed_in\":[],\"open_access\":{\"is_oa\":false,\"oa_status\":\"closed\",\"oa_url\":null,\"any_repository_has_fulltext\":false},\"authorships\":[{\"author_position\":\"first\",\"author\":{\"id\":\"https://openalex.org/A5007998022\",\"display_name\":\"L.V. Nevzgodina\",\"orcid\":null},\"institutions\":[],\"countries\":[],\"is_corresponding\":false,\"raw_author_name\":\"L.V. Nevzgodina\",\"raw_affiliation_string\":\"\",\"raw_affiliation_strings\":[]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5068277177\",\"display_name\":\"\\u0412. \\u0413. \\u041a\\u0443\\u0437\\u043d\\u0435\\u0446\\u043e\\u0432\",\"orcid\":\"https://orcid.org/0000-0003-1996-0055\"},\"institutions\":[],\"countries\":[],\"is_corresponding\":false,\"raw_author_name\":\"V.G. Kuznetsov\",\"raw_affiliation_string\":\"\",\"raw_affiliation_strings\":[]},{\"author_position\":\"last\",\"author\":{\"id\":\"https://openalex.org/A5004871662\",\"display_name\":\"Sychkov\",\"orcid\":null},\"institutions\":[],\"countries\":[],\"is_corresponding\":false,\"raw_author_name\":\"Sychkov\",\"raw_affiliation_string\":\"\",\"raw_affiliation_strings\":[]}],\"countries_distinct_count\":0,\"institutions_distinct_count\":0,\"corresponding_author_ids\":[],\"corresponding_institution_ids\":[],\"apc_list\":null,\"apc_paid\":null,\"has_fulltext\":false,\"cited_by_count\":0,\"cited_by_percentile_year\":{\"min\":0,\"max\":66},\"biblio\":{\"volume\":null,\"issue\":null,\"first_page\":null,\"last_page\":null},\"is_retracted\":false,\"is_paratext\":false,\"primary_topic\":{\"id\":\"https://openalex.org/T12976\",\"display_name\":\"Influence of Magnetic Fields on Biological Systems\",\"score\":0.1936,\"subfield\":{\"id\":\"https://openalex.org/subfields/1314\",\"display_name\":\"Physiology\"},\"field\":{\"id\":\"https://openalex.org/fields/13\",\"display_name\":\"Biochemistry, Genetics and Molecular Biology\"},\"domain\":{\"id\":\"https://openalex.org/domains/1\",\"display_name\":\"Life Sciences\"}},\"topics\":[{\"id\":\"https://openalex.org/T12976\",\"display_name\":\"Influence of Magnetic Fields on Biological Systems\",\"score\":0.1936,\"subfield\":{\"id\":\"https://openalex.org/subfields/1314\",\"display_name\":\"Physiology\"},\"field\":{\"id\":\"https://openalex.org/fields/13\",\"display_name\":\"Biochemistry, Genetics and Molecular Biology\"},\"domain\":{\"id\":\"https://openalex.org/domains/1\",\"display_name\":\"Life Sciences\"}},{\"id\":\"https://openalex.org/T12639\",\"display_name\":\"Global Energy Transition and Fossil Fuel Depletion\",\"score\":0.1922,\"subfield\":{\"id\":\"https://openalex.org/subfields/2105\",\"display_name\":\"Renewable Energy, Sustainability and the Environment\"},\"field\":{\"id\":\"https://openalex.org/fields/21\",\"display_name\":\"Energy\"},\"domain\":{\"id\":\"https://openalex.org/domains/3\",\"display_name\":\"Physical Sciences\"}},{\"id\":\"https://openalex.org/T13776\",\"display_name\":\"Medicinal and Therapeutic Potential of Sea Buckthorn\",\"score\":0.1719,\"subfield\":{\"id\":\"https://openalex.org/subfields/2707\",\"display_name\":\"Complementary and alternative medicine\"},\"field\":{\"id\":\"https://openalex.org/fields/27\",\"display_name\":\"Medicine\"},\"domain\":{\"id\":\"https://openalex.org/domains/4\",\"display_name\":\"Health Sciences\"}}],\"keywords\":[{\"keyword\":\"cabbage seeds\",\"score\":0.622},{\"keyword\":\"high energy protons\",\"score\":0.5826},{\"keyword\":\"relative biological effectiveness\",\"score\":0.2662}],\"concepts\":[{\"id\":\"https://openalex.org/C39432304\",\"wikidata\":\"https://www.wikidata.org/wiki/Q188847\",\"display_name\":\"Environmental science\",\"level\":0,\"score\":0.39743245},{\"id\":\"https://openalex.org/C86803240\",\"wikidata\":\"https://www.wikidata.org/wiki/Q420\",\"display_name\":\"Biology\",\"level\":0,\"score\":0.36749262},{\"id\":\"https://openalex.org/C144027150\",\"wikidata\":\"https://www.wikidata.org/wiki/Q48803\",\"display_name\":\"Horticulture\",\"level\":1,\"score\":0.34196246}],\"mesh\":[],\"locations_count\":1,\"locations\":[{\"is_oa\":false,\"landing_page_url\":\"http://www.osti.gov/scitech/biblio/4528110\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S4210171837\",\"display_name\":\"Genetika\",\"issn_l\":\"0534-0012\",\"issn\":[\"1820-6069\",\"0534-0012\"],\"is_oa\":true,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/P4310321594\",\"host_organization_name\":\"Serbian Genetics Society\",\"host_organization_lineage\":[\"https://openalex.org/P4310321594\"],\"host_organization_lineage_names\":[\"Serbian Genetics Society\"],\"type\":\"journal\"},\"license\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false}],\"best_oa_location\":null,\"sustainable_development_goals\":[{\"score\":0.53,\"id\":\"https://metadata.un.org/sdg/2\",\"display_name\":\"Zero hunger\"}],\"grants\":[],\"referenced_works_count\":0,\"referenced_works\":[],\"related_works\":[\"https://openalex.org/W7475701\",\"https://openalex.org/W17057142\",\"https://openalex.org/W22326495\",\"https://openalex.org/W72313218\",\"https://openalex.org/W91982152\",\"https://openalex.org/W98590474\",\"https://openalex.org/W126479662\",\"https://openalex.org/W135474527\",\"https://openalex.org/W136277763\",\"https://openalex.org/W137814310\",\"https://openalex.org/W206653402\",\"https://openalex.org/W234420188\",\"https://openalex.org/W241081558\",\"https://openalex.org/W278696559\",\"https://openalex.org/W329171942\",\"https://openalex.org/W865308638\",\"https://openalex.org/W1993604795\",\"https://openalex.org/W2266389294\",\"https://openalex.org/W2270463542\",\"https://openalex.org/W3194140224\"],\"ngrams_url\":\"https://api.openalex.org/works/W78857221/ngrams\",\"abstract_inverted_index\":null,\"cited_by_api_url\":\"https://api.openalex.org/works?filter=cites:W78857221\",\"counts_by_year\":[],\"updated_date\":\"2024-02-25T13:03:22.988032\",\"created_date\":\"2016-06-24\"},{\"id\":\"https://openalex.org/W2358372115\",\"doi\":null,\"title\":\"Reasons and Preventions of the Credit Risk with Village Banks\",\"display_name\":\"Reasons and Preventions of the Credit Risk with Village Banks\",\"relevance_score\":0.99999994,\"publication_year\":2012,\"publication_date\":\"2012-01-01\",\"ids\":{\"openalex\":\"https://openalex.org/W2358372115\",\"mag\":\"2358372115\"},\"language\":\"en\",\"primary_location\":{\"is_oa\":false,\"landing_page_url\":\"https://en.cnki.com.cn/Article_en/CJFDTOTAL-SQZJ201203023.htm\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S2764379636\",\"display_name\":\"Journal of Shangqiu Vocational and Technical College\",\"issn_l\":null,\"issn\":null,\"is_oa\":false,\"is_in_doaj\":false,\"host_organization\":null,\"host_organization_name\":null,\"host_organization_lineage\":[],\"host_organization_lineage_names\":[],\"type\":\"journal\"},\"license\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false},\"type\":\"article\",\"type_crossref\":\"journal-article\",\"indexed_in\":[],\"open_access\":{\"is_oa\":false,\"oa_status\":\"closed\",\"oa_url\":null,\"any_repository_has_fulltext\":false},\"authorships\":[{\"author_position\":\"first\",\"author\":{\"id\":\"https://openalex.org/A5072691128\",\"display_name\":\"Ying Pang\",\"orcid\":\"https://orcid.org/0000-0001-6195-2150\"},\"institutions\":[{\"id\":\"https://openalex.org/I40963666\",\"display_name\":\"Central China Normal University\",\"ror\":\"https://ror.org/03x1jna21\",\"country_code\":\"CN\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I40963666\"]}],\"countries\":[\"CN\"],\"is_corresponding\":true,\"raw_author_name\":\"Pang Ying\",\"raw_affiliation_string\":\"Economic College, Central China Normal University, Wuhan 430079, China )\",\"raw_affiliation_strings\":[\"Economic College, Central China Normal University, Wuhan 430079, China )\"]}],\"countries_distinct_count\":1,\"institutions_distinct_count\":1,\"corresponding_author_ids\":[\"https://openalex.org/A5072691128\"],\"corresponding_institution_ids\":[\"https://openalex.org/I40963666\"],\"apc_list\":null,\"apc_paid\":null,\"has_fulltext\":false,\"cited_by_count\":0,\"cited_by_percentile_year\":{\"min\":0,\"max\":70},\"biblio\":{\"volume\":null,\"issue\":null,\"first_page\":null,\"last_page\":null},\"is_retracted\":false,\"is_paratext\":false,\"primary_topic\":{\"id\":\"https://openalex.org/T10987\",\"display_name\":\"Microfinance, Gender Empowerment, and Economic Development\",\"score\":0.7316,\"subfield\":{\"id\":\"https://openalex.org/subfields/2002\",\"display_name\":\"Economics and Econometrics\"},\"field\":{\"id\":\"https://openalex.org/fields/20\",\"display_name\":\"Economics, Econometrics and Finance\"},\"domain\":{\"id\":\"https://openalex.org/domains/2\",\"display_name\":\"Social Sciences\"}},\"topics\":[{\"id\":\"https://openalex.org/T10987\",\"display_name\":\"Microfinance, Gender Empowerment, and Economic Development\",\"score\":0.7316,\"subfield\":{\"id\":\"https://openalex.org/subfields/2002\",\"display_name\":\"Economics and Econometrics\"},\"field\":{\"id\":\"https://openalex.org/fields/20\",\"display_name\":\"Economics, Econometrics and Finance\"},\"domain\":{\"id\":\"https://openalex.org/domains/2\",\"display_name\":\"Social Sciences\"}}],\"keywords\":[{\"keyword\":\"credit risk\",\"score\":0.6668},{\"keyword\":\"preventions\",\"score\":0.2534}],\"concepts\":[{\"id\":\"https://openalex.org/C178350159\",\"wikidata\":\"https://www.wikidata.org/wiki/Q162714\",\"display_name\":\"Credit risk\",\"level\":2,\"score\":0.69062895},{\"id\":\"https://openalex.org/C182306322\",\"wikidata\":\"https://www.wikidata.org/wiki/Q1779371\",\"display_name\":\"Order (exchange)\",\"level\":2,\"score\":0.6181609},{\"id\":\"https://openalex.org/C144133560\",\"wikidata\":\"https://www.wikidata.org/wiki/Q4830453\",\"display_name\":\"Business\",\"level\":0,\"score\":0.6125847},{\"id\":\"https://openalex.org/C24308983\",\"wikidata\":\"https://www.wikidata.org/wiki/Q5183781\",\"display_name\":\"Credit reference\",\"level\":3,\"score\":0.59351885},{\"id\":\"https://openalex.org/C68842666\",\"wikidata\":\"https://www.wikidata.org/wiki/Q1070699\",\"display_name\":\"Credit history\",\"level\":2,\"score\":0.57673407},{\"id\":\"https://openalex.org/C31348098\",\"wikidata\":\"https://www.wikidata.org/wiki/Q3423719\",\"display_name\":\"Credit enhancement\",\"level\":4,\"score\":0.5681863},{\"id\":\"https://openalex.org/C2982805371\",\"wikidata\":\"https://www.wikidata.org/wiki/Q104493\",\"display_name\":\"Risk prevention\",\"level\":2,\"score\":0.48103765},{\"id\":\"https://openalex.org/C180879305\",\"wikidata\":\"https://www.wikidata.org/wiki/Q590998\",\"display_name\":\"Credit crunch\",\"level\":2,\"score\":0.43411663},{\"id\":\"https://openalex.org/C10138342\",\"wikidata\":\"https://www.wikidata.org/wiki/Q43015\",\"display_name\":\"Finance\",\"level\":1,\"score\":0.41794646},{\"id\":\"https://openalex.org/C73283319\",\"wikidata\":\"https://www.wikidata.org/wiki/Q1416617\",\"display_name\":\"Financial system\",\"level\":1,\"score\":0.36988437},{\"id\":\"https://openalex.org/C162118730\",\"wikidata\":\"https://www.wikidata.org/wiki/Q1128453\",\"display_name\":\"Actuarial science\",\"level\":1,\"score\":0.34195477},{\"id\":\"https://openalex.org/C112930515\",\"wikidata\":\"https://www.wikidata.org/wiki/Q4389547\",\"display_name\":\"Risk analysis (engineering)\",\"level\":1,\"score\":0.22332808}],\"mesh\":[],\"locations_count\":1,\"locations\":[{\"is_oa\":false,\"landing_page_url\":\"https://en.cnki.com.cn/Article_en/CJFDTOTAL-SQZJ201203023.htm\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S2764379636\",\"display_name\":\"Journal of Shangqiu Vocational and Technical College\",\"issn_l\":null,\"issn\":null,\"is_oa\":false,\"is_in_doaj\":false,\"host_organization\":null,\"host_organization_name\":null,\"host_organization_lineage\":[],\"host_organization_lineage_names\":[],\"type\":\"journal\"},\"license\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false}],\"best_oa_location\":null,\"sustainable_development_goals\":[],\"grants\":[],\"referenced_works_count\":0,\"referenced_works\":[],\"related_works\":[\"https://openalex.org/W2348633948\",\"https://openalex.org/W2351788559\",\"https://openalex.org/W2354090623\",\"https://openalex.org/W2355993715\",\"https://openalex.org/W2357332618\",\"https://openalex.org/W2358595772\",\"https://openalex.org/W2359558374\",\"https://openalex.org/W2361023201\",\"https://openalex.org/W2364845452\",\"https://openalex.org/W2364984641\",\"https://openalex.org/W2365176669\",\"https://openalex.org/W2369743027\",\"https://openalex.org/W2374288397\",\"https://openalex.org/W2379826515\",\"https://openalex.org/W2380611485\",\"https://openalex.org/W2385249515\",\"https://openalex.org/W2386016711\",\"https://openalex.org/W2388342831\",\"https://openalex.org/W2392239461\",\"https://openalex.org/W2393937760\"],\"ngrams_url\":\"https://api.openalex.org/works/W2358372115/ngrams\",\"abstract_inverted_index\":{\"Village\":[0],\"banks\":[1],\"are\":[2,23],\"the\":[3,7,26,34,38,45,51,54,57,61,73,76,90],\"core\":[4],\"strength\":[5],\"of\":[6,13,25,42,53,56,66,92],\"new\":[8],\"rural\":[9,30,68],\"financial\":[10,69],\"institutions.But\":[11],\"because\":[12],\"their\":[14],\"own\":[15],\"development\":[16,43],\"is\":[17],\"not\":[18],\"perfect\":[19],\"and\":[20,63,71,84,87],\"many\":[21],\"people\":[22],\"lack\":[24],\"credit\":[27,58,77,95],\"consciousness\":[28],\"in\":[29,37],\"area,credit\":[31],\"risk\":[32],\"becomes\":[33],\"outstanding\":[35],\"problem\":[36],\"village\":[39,93],\"banks'\":[40,94],\"process\":[41],\"at\":[44],\"present\":[46],\"stage.This\":[47],\"article\":[48],\"starts\":[49],\"from\":[50],\"form\":[52],\"expression\":[55],\"risk,combining\":[59],\"with\":[60,75,89],\"characteristic\":[62],\"special\":[64],\"status\":[65],\"our\":[67],\"market.Analyzing\":[70],\"discussing\":[72],\"reasons\":[74],\"risk,in\":[78],\"order\":[79],\"putting\":[80],\"forward\":[81],\"some\":[82],\"positive\":[83],\"effective\":[85],\"countermeasures\":[86],\"suggestions\":[88],\"prevention\":[91],\"risk.\":[96]},\"cited_by_api_url\":\"https://api.openalex.org/works?filter=cites:W2358372115\",\"counts_by_year\":[],\"updated_date\":\"2024-03-01T20:11:08.405481\",\"created_date\":\"2016-06-24\"}],\"group_by\":[]}\r\n",
"items": [
{
"itemType": "journalArticle",
"title": "On the audibility of amplifier phase distortion",
"creators": [
{
"firstName": "G.",
"lastName": "Wentworth",
"creatorType": "author"
}
],
"date": "1965-07-01",
"DOI": "10.1109/tau.1965.1161805",
"ISSN": "1558-2663",
"extra": "OpenAlex: https://openalex.org/W2046245907",
"issue": "4",
"language": "en",
"pages": "99",
"publicationTitle": "IEEE Transactions on Audio",
"volume": "AU-13",
"attachments": [],
"tags": [
{
"tag": "amplifier phase distortion"
},
{
"tag": "audibility"
}
],
"notes": [],
"seeAlso": []
},
{
"itemType": "journalArticle",
"title": "Notices",
"creators": [],
"date": "1983-01-13",
"DOI": "10.1056/nejm198301133080228",
"ISSN": "0028-4793",
"extra": "OpenAlex: https://openalex.org/W4237963058",
"issue": "2",
"pages": "112",
"publicationTitle": "The New England Journal of Medicine",
"volume": "308",
"attachments": [],
"tags": [],
"notes": [],
"seeAlso": []
},
{
"itemType": "bookSection",
"title": "The Big Data Research Ecosystem",
"creators": [
{
"firstName": "Moses John",
"lastName": "Strydom",
"creatorType": "author"
},
{
"firstName": "Sheryl",
"lastName": "Buckley",
"creatorType": "author"
}
],
"date": "2020-11-27",
"bookTitle": "IGI Global eBooks",
"extra": "OpenAlex: https://openalex.org/W4239223537",
"language": "en",
"pages": "2027-2057",
"publisher": "IGI Global",
"attachments": [],
"tags": [
{
"tag": "big data"
},
{
"tag": "big data research ecosystem"
}
],
"notes": [],
"seeAlso": []
},
{
"itemType": "journalArticle",
"title": "Relative Biological Effectiveness of High Energy Protons Affecting Cabbage Seeds",
"creators": [
{
"firstName": "L. V.",
"lastName": "Nevzgodina",
"creatorType": "author"
},
{
"firstName": "В. Г.",
"lastName": "Кузнецов",
"creatorType": "author"
},
{
"firstName": "",
"lastName": "Sychkov",
"creatorType": "author"
}
],
"date": "1966-08-01",
"ISSN": "1820-6069",
"extra": "OpenAlex: https://openalex.org/W78857221",
"language": "de",
"publicationTitle": "Genetika",
"attachments": [],
"tags": [
{
"tag": "cabbage seeds"
},
{
"tag": "high energy protons"
},
{
"tag": "relative biological effectiveness"
}
],
"notes": [],
"seeAlso": []
},
{
"itemType": "journalArticle",
"title": "Reasons and Preventions of the Credit Risk with Village Banks",
"creators": [
{
"firstName": "Ying",
"lastName": "Pang",
"creatorType": "author"
}
],
"date": "2012-01-01",
"extra": "OpenAlex: https://openalex.org/W2358372115",
"language": "en",
"publicationTitle": "Journal of Shangqiu Vocational and Technical College",
"attachments": [],
"tags": [
{
"tag": "credit risk"
},
{
"tag": "preventions"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "{\"id\":\"https://openalex.org/W2962935454\",\"doi\":null,\"title\":\"Generalizing to Unseen Domains via Adversarial Data Augmentation\",\"display_name\":\"Generalizing to Unseen Domains via Adversarial Data Augmentation\",\"publication_year\":2018,\"publication_date\":\"2018-05-01\",\"ids\":{\"openalex\":\"https://openalex.org/W2962935454\",\"mag\":\"2962935454\"},\"language\":\"en\",\"primary_location\":{\"is_oa\":false,\"landing_page_url\":\"https://papers.nips.cc/paper/7779-generalizing-to-unseen-domains-via-adversarial-data-augmentation.pdf\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S4306420609\",\"display_name\":\"Neural Information Processing Systems\",\"issn_l\":null,\"issn\":null,\"is_oa\":false,\"is_in_doaj\":false,\"is_core\":false,\"host_organization\":null,\"host_organization_name\":null,\"host_organization_lineage\":[],\"host_organization_lineage_names\":[],\"type\":\"conference\"},\"license\":null,\"license_id\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false},\"type\":\"article\",\"type_crossref\":\"proceedings-article\",\"indexed_in\":[],\"open_access\":{\"is_oa\":false,\"oa_status\":\"closed\",\"oa_url\":null,\"any_repository_has_fulltext\":false},\"authorships\":[{\"author_position\":\"first\",\"author\":{\"id\":\"https://openalex.org/A5087171315\",\"display_name\":\"Riccardo Volpi\",\"orcid\":\"https://orcid.org/0000-0003-4485-9573\"},\"institutions\":[{\"id\":\"https://openalex.org/I30771326\",\"display_name\":\"Italian Institute of Technology\",\"ror\":\"https://ror.org/042t93s57\",\"country_code\":\"IT\",\"type\":\"facility\",\"lineage\":[\"https://openalex.org/I30771326\"]}],\"countries\":[\"IT\"],\"is_corresponding\":false,\"raw_author_name\":\"Riccardo Volpi\",\"raw_affiliation_strings\":[],\"affiliations\":[]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5008595840\",\"display_name\":\"Hongseok Namkoong\",\"orcid\":\"https://orcid.org/0000-0002-5708-4044\"},\"institutions\":[{\"id\":\"https://openalex.org/I78577930\",\"display_name\":\"Columbia University\",\"ror\":\"https://ror.org/00hj8s172\",\"country_code\":\"US\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I78577930\"]}],\"countries\":[\"US\"],\"is_corresponding\":false,\"raw_author_name\":\"Hongseok Namkoong\",\"raw_affiliation_strings\":[],\"affiliations\":[]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5026399398\",\"display_name\":\"Ozan \\u015eener\",\"orcid\":\"https://orcid.org/0000-0002-1542-7547\"},\"institutions\":[{\"id\":\"https://openalex.org/I205783295\",\"display_name\":\"Cornell University\",\"ror\":\"https://ror.org/05bnh6r87\",\"country_code\":\"US\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I205783295\"]}],\"countries\":[\"US\"],\"is_corresponding\":false,\"raw_author_name\":\"Ozan Sener\",\"raw_affiliation_strings\":[],\"affiliations\":[]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5061331093\",\"display_name\":\"John C. Duchi\",\"orcid\":\"https://orcid.org/0000-0003-0045-7185\"},\"institutions\":[{\"id\":\"https://openalex.org/I97018004\",\"display_name\":\"Stanford University\",\"ror\":\"https://ror.org/00f54p054\",\"country_code\":\"US\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I97018004\"]}],\"countries\":[\"US\"],\"is_corresponding\":false,\"raw_author_name\":\"John C. Duchi\",\"raw_affiliation_strings\":[],\"affiliations\":[]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5007242502\",\"display_name\":\"Vittorio Murino\",\"orcid\":\"https://orcid.org/0000-0002-8645-2328\"},\"institutions\":[{\"id\":\"https://openalex.org/I30771326\",\"display_name\":\"Italian Institute of Technology\",\"ror\":\"https://ror.org/042t93s57\",\"country_code\":\"IT\",\"type\":\"facility\",\"lineage\":[\"https://openalex.org/I30771326\"]}],\"countries\":[\"IT\"],\"is_corresponding\":false,\"raw_author_name\":\"Vittorio Murino\",\"raw_affiliation_strings\":[],\"affiliations\":[]},{\"author_position\":\"last\",\"author\":{\"id\":\"https://openalex.org/A5042646536\",\"display_name\":\"Silvio Savarese\",\"orcid\":null},\"institutions\":[{\"id\":\"https://openalex.org/I97018004\",\"display_name\":\"Stanford University\",\"ror\":\"https://ror.org/00f54p054\",\"country_code\":\"US\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I97018004\"]}],\"countries\":[\"US\"],\"is_corresponding\":false,\"raw_author_name\":\"Silvio Savarese\",\"raw_affiliation_strings\":[],\"affiliations\":[]}],\"countries_distinct_count\":2,\"institutions_distinct_count\":4,\"corresponding_author_ids\":[],\"corresponding_institution_ids\":[],\"apc_list\":null,\"apc_paid\":null,\"fwci\":11.363,\"has_fulltext\":false,\"cited_by_count\":142,\"cited_by_percentile_year\":{\"min\":99,\"max\":100},\"biblio\":{\"volume\":\"31\",\"issue\":null,\"first_page\":\"5334\",\"last_page\":\"5344\"},\"is_retracted\":false,\"is_paratext\":false,\"primary_topic\":{\"id\":\"https://openalex.org/T11307\",\"display_name\":\"Advances in Transfer Learning and Domain Adaptation\",\"score\":0.9932,\"subfield\":{\"id\":\"https://openalex.org/subfields/1702\",\"display_name\":\"Artificial Intelligence\"},\"field\":{\"id\":\"https://openalex.org/fields/17\",\"display_name\":\"Computer Science\"},\"domain\":{\"id\":\"https://openalex.org/domains/3\",\"display_name\":\"Physical Sciences\"}},\"topics\":[{\"id\":\"https://openalex.org/T11307\",\"display_name\":\"Advances in Transfer Learning and Domain Adaptation\",\"score\":0.9932,\"subfield\":{\"id\":\"https://openalex.org/subfields/1702\",\"display_name\":\"Artificial Intelligence\"},\"field\":{\"id\":\"https://openalex.org/fields/17\",\"display_name\":\"Computer Science\"},\"domain\":{\"id\":\"https://openalex.org/domains/3\",\"display_name\":\"Physical Sciences\"}},{\"id\":\"https://openalex.org/T11689\",\"display_name\":\"Adversarial Robustness in Deep Learning Models\",\"score\":0.9897,\"subfield\":{\"id\":\"https://openalex.org/subfields/1702\",\"display_name\":\"Artificial Intelligence\"},\"field\":{\"id\":\"https://openalex.org/fields/17\",\"display_name\":\"Computer Science\"},\"domain\":{\"id\":\"https://openalex.org/domains/3\",\"display_name\":\"Physical Sciences\"}},{\"id\":\"https://openalex.org/T11775\",\"display_name\":\"Applications of Deep Learning in Medical Imaging\",\"score\":0.9777,\"subfield\":{\"id\":\"https://openalex.org/subfields/2741\",\"display_name\":\"Radiology, Nuclear Medicine and Imaging\"},\"field\":{\"id\":\"https://openalex.org/fields/27\",\"display_name\":\"Medicine\"},\"domain\":{\"id\":\"https://openalex.org/domains/4\",\"display_name\":\"Health Sciences\"}}],\"keywords\":[{\"id\":\"https://openalex.org/keywords/domain-adaptation\",\"display_name\":\"Domain Adaptation\",\"score\":0.6031},{\"id\":\"https://openalex.org/keywords/unsupervised-learning\",\"display_name\":\"Unsupervised Learning\",\"score\":0.565551},{\"id\":\"https://openalex.org/keywords/adversarial-examples\",\"display_name\":\"Adversarial Examples\",\"score\":0.563401},{\"id\":\"https://openalex.org/keywords/transfer-learning\",\"display_name\":\"Transfer Learning\",\"score\":0.559807},{\"id\":\"https://openalex.org/keywords/representation-learning\",\"display_name\":\"Representation Learning\",\"score\":0.526564}],\"concepts\":[{\"id\":\"https://openalex.org/C41008148\",\"wikidata\":\"https://www.wikidata.org/wiki/Q21198\",\"display_name\":\"Computer science\",\"level\":0,\"score\":0.6881822},{\"id\":\"https://openalex.org/C2776135515\",\"wikidata\":\"https://www.wikidata.org/wiki/Q17143721\",\"display_name\":\"Regularization (linguistics)\",\"level\":2,\"score\":0.67249304},{\"id\":\"https://openalex.org/C188441871\",\"wikidata\":\"https://www.wikidata.org/wiki/Q7554146\",\"display_name\":\"Softmax function\",\"level\":3,\"score\":0.6059211},{\"id\":\"https://openalex.org/C154945302\",\"wikidata\":\"https://www.wikidata.org/wiki/Q11660\",\"display_name\":\"Artificial intelligence\",\"level\":1,\"score\":0.5804972},{\"id\":\"https://openalex.org/C75553542\",\"wikidata\":\"https://www.wikidata.org/wiki/Q178161\",\"display_name\":\"A priori and a posteriori\",\"level\":2,\"score\":0.56781113},{\"id\":\"https://openalex.org/C36503486\",\"wikidata\":\"https://www.wikidata.org/wiki/Q11235244\",\"display_name\":\"Domain (mathematical analysis)\",\"level\":2,\"score\":0.47703072},{\"id\":\"https://openalex.org/C89600930\",\"wikidata\":\"https://www.wikidata.org/wiki/Q1423946\",\"display_name\":\"Segmentation\",\"level\":2,\"score\":0.4638946},{\"id\":\"https://openalex.org/C77618280\",\"wikidata\":\"https://www.wikidata.org/wiki/Q1155772\",\"display_name\":\"Scheme (mathematics)\",\"level\":2,\"score\":0.45647982},{\"id\":\"https://openalex.org/C204323151\",\"wikidata\":\"https://www.wikidata.org/wiki/Q905424\",\"display_name\":\"Range (aeronautics)\",\"level\":2,\"score\":0.42658007},{\"id\":\"https://openalex.org/C2776401178\",\"wikidata\":\"https://www.wikidata.org/wiki/Q12050496\",\"display_name\":\"Feature (linguistics)\",\"level\":2,\"score\":0.42016298},{\"id\":\"https://openalex.org/C153180895\",\"wikidata\":\"https://www.wikidata.org/wiki/Q7148389\",\"display_name\":\"Pattern recognition (psychology)\",\"level\":2,\"score\":0.41843256},{\"id\":\"https://openalex.org/C83665646\",\"wikidata\":\"https://www.wikidata.org/wiki/Q42139305\",\"display_name\":\"Feature vector\",\"level\":2,\"score\":0.41224036},{\"id\":\"https://openalex.org/C159694833\",\"wikidata\":\"https://www.wikidata.org/wiki/Q2321565\",\"display_name\":\"Iterative method\",\"level\":2,\"score\":0.41180462},{\"id\":\"https://openalex.org/C11413529\",\"wikidata\":\"https://www.wikidata.org/wiki/Q8366\",\"display_name\":\"Algorithm\",\"level\":1,\"score\":0.40941933},{\"id\":\"https://openalex.org/C119857082\",\"wikidata\":\"https://www.wikidata.org/wiki/Q2539\",\"display_name\":\"Machine learning\",\"level\":1,\"score\":0.3678398},{\"id\":\"https://openalex.org/C80444323\",\"wikidata\":\"https://www.wikidata.org/wiki/Q2878974\",\"display_name\":\"Theoretical computer science\",\"level\":1,\"score\":0.3276114},{\"id\":\"https://openalex.org/C108583219\",\"wikidata\":\"https://www.wikidata.org/wiki/Q197536\",\"display_name\":\"Deep learning\",\"level\":2,\"score\":0.2830665},{\"id\":\"https://openalex.org/C33923547\",\"wikidata\":\"https://www.wikidata.org/wiki/Q395\",\"display_name\":\"Mathematics\",\"level\":0,\"score\":0.20898846},{\"id\":\"https://openalex.org/C134306372\",\"wikidata\":\"https://www.wikidata.org/wiki/Q7754\",\"display_name\":\"Mathematical analysis\",\"level\":1,\"score\":0.0},{\"id\":\"https://openalex.org/C138885662\",\"wikidata\":\"https://www.wikidata.org/wiki/Q5891\",\"display_name\":\"Philosophy\",\"level\":0,\"score\":0.0},{\"id\":\"https://openalex.org/C41895202\",\"wikidata\":\"https://www.wikidata.org/wiki/Q8162\",\"display_name\":\"Linguistics\",\"level\":1,\"score\":0.0},{\"id\":\"https://openalex.org/C192562407\",\"wikidata\":\"https://www.wikidata.org/wiki/Q228736\",\"display_name\":\"Materials science\",\"level\":0,\"score\":0.0},{\"id\":\"https://openalex.org/C111472728\",\"wikidata\":\"https://www.wikidata.org/wiki/Q9471\",\"display_name\":\"Epistemology\",\"level\":1,\"score\":0.0},{\"id\":\"https://openalex.org/C159985019\",\"wikidata\":\"https://www.wikidata.org/wiki/Q181790\",\"display_name\":\"Composite material\",\"level\":1,\"score\":0.0}],\"mesh\":[],\"locations_count\":1,\"locations\":[{\"is_oa\":false,\"landing_page_url\":\"https://papers.nips.cc/paper/7779-generalizing-to-unseen-domains-via-adversarial-data-augmentation.pdf\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S4306420609\",\"display_name\":\"Neural Information Processing Systems\",\"issn_l\":null,\"issn\":null,\"is_oa\":false,\"is_in_doaj\":false,\"is_core\":false,\"host_organization\":null,\"host_organization_name\":null,\"host_organization_lineage\":[],\"host_organization_lineage_names\":[],\"type\":\"conference\"},\"license\":null,\"license_id\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false}],\"best_oa_location\":null,\"sustainable_development_goals\":[],\"grants\":[],\"datasets\":[],\"versions\":[],\"referenced_works_count\":0,\"referenced_works\":[],\"related_works\":[\"https://openalex.org/W2981368934\",\"https://openalex.org/W2970119729\",\"https://openalex.org/W2963838962\",\"https://openalex.org/W2963826681\",\"https://openalex.org/W2963118547\",\"https://openalex.org/W2963043696\",\"https://openalex.org/W2958360136\",\"https://openalex.org/W2894728917\",\"https://openalex.org/W2889965839\",\"https://openalex.org/W2798658180\",\"https://openalex.org/W2763549966\",\"https://openalex.org/W2593768305\",\"https://openalex.org/W2335728318\",\"https://openalex.org/W2194775991\",\"https://openalex.org/W2155858138\",\"https://openalex.org/W2112796928\",\"https://openalex.org/W2108598243\",\"https://openalex.org/W2104094955\",\"https://openalex.org/W1920962657\",\"https://openalex.org/W1731081199\"],\"ngrams_url\":\"https://api.openalex.org/works/W2962935454/ngrams\",\"abstract_inverted_index\":{\"We\":[0,13,63],\"are\":[1,22],\"concerned\":[2],\"with\":[3,49],\"learning\":[4],\"models\":[5,120],\"that\":[6,21,45,56,65,88,96,102],\"generalize\":[7],\"well\":[8],\"to\":[9],\"different\":[10],\"unseen\":[11],\"domains.\":[12,131],\"consider\":[14],\"a\":[15,36,52,92,124,127],\"worst-case\":[16],\"formulation\":[17],\"over\":[18],\"data\":[19,34,72],\"distributions\":[20],\"near\":[23],\"the\":[24,28,47,60],\"source\":[25,38],\"domain\":[26,55],\"in\":[27],\"feature\":[29],\"space.\":[30],\"Only\":[31],\"using\":[32],\"training\":[33],\"from\":[35,51,99],\"single\":[37],\"distribution,\":[39],\"we\":[40,76,86],\"propose\":[41],\"an\":[42,70],\"iterative\":[43,67],\"procedure\":[44],\"augments\":[46],\"dataset\":[48],\"examples\":[50,79],\"fictitious\":[53],\"target\":[54,130],\"is\":[57,69,91],\"hard\":[58],\"under\":[59],\"current\":[61],\"model.\":[62],\"show\":[64,87],\"our\":[66,89,117],\"scheme\":[68,95],\"adaptive\":[71],\"augmentation\":[73],\"method\":[74,90,118],\"where\":[75],\"append\":[77],\"adversarial\":[78],\"at\":[80],\"each\":[81],\"iteration.\":[82],\"For\":[83],\"softmax\":[84],\"losses,\":[85],\"data-dependent\":[93],\"regularization\":[94],\"behaves\":[97],\"differently\":[98],\"classical\":[100],\"regularizers\":[101],\"regularize\":[103],\"towards\":[104],\"zero\":[105],\"(e.g.,\":[106],\"ridge\":[107],\"or\":[108],\"lasso).\":[109],\"On\":[110],\"digit\":[111],\"recognition\":[112],\"and\":[113],\"semantic\":[114],\"segmentation\":[115],\"tasks,\":[116],\"learns\":[119],\"improve\":[121],\"performance\":[122],\"across\":[123],\"range\":[125],\"of\":[126],\"priori\":[128],\"unknown\":[129]},\"cited_by_api_url\":\"https://api.openalex.org/works?filter=cites:W2962935454\",\"counts_by_year\":[{\"year\":2022,\"cited_by_count\":1},{\"year\":2021,\"cited_by_count\":72},{\"year\":2020,\"cited_by_count\":43},{\"year\":2019,\"cited_by_count\":24},{\"year\":2018,\"cited_by_count\":2},{\"year\":2017,\"cited_by_count\":1}],\"updated_date\":\"2024-07-16T08:42:24.812785\",\"created_date\":\"2019-07-30\"}\n",
"items": [
{
"itemType": "conferencePaper",
"title": "Generalizing to Unseen Domains via Adversarial Data Augmentation",
"creators": [
{
"firstName": "Riccardo",
"lastName": "Volpi",
"creatorType": "author"
},
{
"firstName": "Hongseok",
"lastName": "Namkoong",
"creatorType": "author"
},
{
"firstName": "Ozan",
"lastName": "Şener",
"creatorType": "author"
},
{
"firstName": "John C.",
"lastName": "Duchi",
"creatorType": "author"
},
{
"firstName": "Vittorio",
"lastName": "Murino",
"creatorType": "author"
},
{
"firstName": "Silvio",
"lastName": "Savarese",
"creatorType": "author"
}
],
"date": "2018-05-01",
"extra": "OpenAlex: https://openalex.org/W2962935454",
"language": "en",
"pages": "5334-5344",
"proceedingsTitle": "Neural Information Processing Systems",
"volume": "31",
"attachments": [],
"tags": [
{
"tag": "Adversarial Examples"
},
{
"tag": "Domain Adaptation"
},
{
"tag": "Representation Learning"
},
{
"tag": "Transfer Learning"
},
{
"tag": "Unsupervised Learning"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "{\"id\":\"https://openalex.org/W2101234009\",\"doi\":\"https://doi.org/10.48550/arxiv.1201.0490\",\"title\":\"Scikit-learn: Machine Learning in Python\",\"display_name\":\"Scikit-learn: Machine Learning in Python\",\"publication_year\":2012,\"publication_date\":\"2012-01-01\",\"ids\":{\"openalex\":\"https://openalex.org/W2101234009\",\"doi\":\"https://doi.org/10.48550/arxiv.1201.0490\",\"mag\":\"2101234009\"},\"language\":\"en\",\"primary_location\":{\"is_oa\":true,\"landing_page_url\":\"https://arxiv.org/abs/1201.0490\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S4306400194\",\"display_name\":\"arXiv (Cornell University)\",\"issn_l\":null,\"issn\":null,\"is_oa\":true,\"is_in_doaj\":false,\"is_core\":false,\"host_organization\":\"https://openalex.org/I205783295\",\"host_organization_name\":\"Cornell University\",\"host_organization_lineage\":[\"https://openalex.org/I205783295\"],\"host_organization_lineage_names\":[\"Cornell University\"],\"type\":\"repository\"},\"license\":\"other-oa\",\"license_id\":\"https://openalex.org/licenses/other-oa\",\"version\":null,\"is_accepted\":false,\"is_published\":false},\"type\":\"preprint\",\"type_crossref\":\"journal-article\",\"indexed_in\":[\"datacite\"],\"open_access\":{\"is_oa\":true,\"oa_status\":\"green\",\"oa_url\":\"https://arxiv.org/abs/1201.0490\",\"any_repository_has_fulltext\":true},\"authorships\":[{\"author_position\":\"first\",\"author\":{\"id\":\"https://openalex.org/A5066572762\",\"display_name\":\"Fabi\\u00e1n Pedregosa\",\"orcid\":\"https://orcid.org/0000-0003-4025-3953\"},\"institutions\":[{\"id\":\"https://openalex.org/I4210128565\",\"display_name\":\"CEA Saclay\",\"ror\":\"https://ror.org/03n15ch10\",\"country_code\":\"FR\",\"type\":\"government\",\"lineage\":[\"https://openalex.org/I2738703131\",\"https://openalex.org/I4210127723\",\"https://openalex.org/I4210128565\"]},{\"id\":\"https://openalex.org/I2738703131\",\"display_name\":\"Commissariat \\u00e0 l'\\u00c9nergie Atomique et aux \\u00c9nergies Alternatives\",\"ror\":\"https://ror.org/00jjx8s55\",\"country_code\":\"FR\",\"type\":\"government\",\"lineage\":[\"https://openalex.org/I2738703131\"]}],\"countries\":[\"FR\"],\"is_corresponding\":false,\"raw_author_name\":\"Fabian Pedregosa\",\"raw_affiliation_strings\":[\"LNAO - Laboratoire de Neuroimagerie Assist\\u00e9e par Ordinateur (France)\",\"PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, B\\u00e2timent 145, 91191 Gif-sur-Yvette Cedex - France)\"],\"affiliations\":[{\"raw_affiliation_string\":\"PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, B\\u00e2timent 145, 91191 Gif-sur-Yvette Cedex - France)\",\"institution_ids\":[\"https://openalex.org/I4210128565\",\"https://openalex.org/I2738703131\"]},{\"raw_affiliation_string\":\"LNAO - Laboratoire de Neuroimagerie Assist\\u00e9e par Ordinateur (France)\",\"institution_ids\":[]}]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5074733625\",\"display_name\":\"Ga\\u00ebl Varoquaux\",\"orcid\":\"https://orcid.org/0000-0003-1076-5122\"},\"institutions\":[{\"id\":\"https://openalex.org/I2738703131\",\"display_name\":\"Commissariat \\u00e0 l'\\u00c9nergie Atomique et aux \\u00c9nergies Alternatives\",\"ror\":\"https://ror.org/00jjx8s55\",\"country_code\":\"FR\",\"type\":\"government\",\"lineage\":[\"https://openalex.org/I2738703131\"]},{\"id\":\"https://openalex.org/I4210128565\",\"display_name\":\"CEA Saclay\",\"ror\":\"https://ror.org/03n15ch10\",\"country_code\":\"FR\",\"type\":\"government\",\"lineage\":[\"https://openalex.org/I2738703131\",\"https://openalex.org/I4210127723\",\"https://openalex.org/I4210128565\"]}],\"countries\":[\"FR\"],\"is_corresponding\":false,\"raw_author_name\":\"Ga\\u00ebl Varoquaux\",\"raw_affiliation_strings\":[\"LNAO - Laboratoire de Neuroimagerie Assist\\u00e9e par Ordinateur (France)\",\"PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, B\\u00e2timent 145, 91191 Gif-sur-Yvette Cedex - France)\"],\"affiliations\":[{\"raw_affiliation_string\":\"LNAO - Laboratoire de Neuroimagerie Assist\\u00e9e par Ordinateur (France)\",\"institution_ids\":[]},{\"raw_affiliation_string\":\"PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, B\\u00e2timent 145, 91191 Gif-sur-Yvette Cedex - France)\",\"institution_ids\":[\"https://openalex.org/I2738703131\",\"https://openalex.org/I4210128565\"]}]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5018256474\",\"display_name\":\"Alexandre Gramfort\",\"orcid\":\"https://orcid.org/0000-0001-9791-4404\"},\"institutions\":[{\"id\":\"https://openalex.org/I2738703131\",\"display_name\":\"Commissariat \\u00e0 l'\\u00c9nergie Atomique et aux \\u00c9nergies Alternatives\",\"ror\":\"https://ror.org/00jjx8s55\",\"country_code\":\"FR\",\"type\":\"government\",\"lineage\":[\"https://openalex.org/I2738703131\"]},{\"id\":\"https://openalex.org/I4210128565\",\"display_name\":\"CEA Saclay\",\"ror\":\"https://ror.org/03n15ch10\",\"country_code\":\"FR\",\"type\":\"government\",\"lineage\":[\"https://openalex.org/I2738703131\",\"https://openalex.org/I4210127723\",\"https://openalex.org/I4210128565\"]}],\"countries\":[\"FR\"],\"is_corresponding\":false,\"raw_author_name\":\"Alexandre Gramfort\",\"raw_affiliation_strings\":[\"LNAO - Laboratoire de Neuroimagerie Assist\\u00e9e par Ordinateur (France)\",\"PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, B\\u00e2timent 145, 91191 Gif-sur-Yvette Cedex - France)\"],\"affiliations\":[{\"raw_affiliation_string\":\"PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, B\\u00e2timent 145, 91191 Gif-sur-Yvette Cedex - France)\",\"institution_ids\":[\"https://openalex.org/I2738703131\",\"https://openalex.org/I4210128565\"]},{\"raw_affiliation_string\":\"LNAO - Laboratoire de Neuroimagerie Assist\\u00e9e par Ordinateur (France)\",\"institution_ids\":[]}]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5027430303\",\"display_name\":\"Vincent Michel\",\"orcid\":\"https://orcid.org/0000-0002-7025-4343\"},\"institutions\":[{\"id\":\"https://openalex.org/I2738703131\",\"display_name\":\"Commissariat \\u00e0 l'\\u00c9nergie Atomique et aux \\u00c9nergies Alternatives\",\"ror\":\"https://ror.org/00jjx8s55\",\"country_code\":\"FR\",\"type\":\"government\",\"lineage\":[\"https://openalex.org/I2738703131\"]},{\"id\":\"https://openalex.org/I4210128565\",\"display_name\":\"CEA Saclay\",\"ror\":\"https://ror.org/03n15ch10\",\"country_code\":\"FR\",\"type\":\"government\",\"lineage\":[\"https://openalex.org/I2738703131\",\"https://openalex.org/I4210127723\",\"https://openalex.org/I4210128565\"]}],\"countries\":[\"FR\"],\"is_corresponding\":false,\"raw_author_name\":\"Vincent Michel\",\"raw_affiliation_strings\":[\"LNAO - Laboratoire de Neuroimagerie Assist\\u00e9e par Ordinateur (France)\",\"PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, B\\u00e2timent 145, 91191 Gif-sur-Yvette Cedex - France)\"],\"affiliations\":[{\"raw_affiliation_string\":\"LNAO - Laboratoire de Neuroimagerie Assist\\u00e9e par Ordinateur (France)\",\"institution_ids\":[]},{\"raw_affiliation_string\":\"PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, B\\u00e2timent 145, 91191 Gif-sur-Yvette Cedex - France)\",\"institution_ids\":[\"https://openalex.org/I2738703131\",\"https://openalex.org/I4210128565\"]}]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5026762833\",\"display_name\":\"Bertrand Thirion\",\"orcid\":\"https://orcid.org/0000-0001-5018-7895\"},\"institutions\":[{\"id\":\"https://openalex.org/I2738703131\",\"display_name\":\"Commissariat \\u00e0 l'\\u00c9nergie Atomique et aux \\u00c9nergies Alternatives\",\"ror\":\"https://ror.org/00jjx8s55\",\"country_code\":\"FR\",\"type\":\"government\",\"lineage\":[\"https://openalex.org/I2738703131\"]},{\"id\":\"https://openalex.org/I4210128565\",\"display_name\":\"CEA Saclay\",\"ror\":\"https://ror.org/03n15ch10\",\"country_code\":\"FR\",\"type\":\"government\",\"lineage\":[\"https://openalex.org/I2738703131\",\"https://openalex.org/I4210127723\",\"https://openalex.org/I4210128565\"]}],\"countries\":[\"FR\"],\"is_corresponding\":false,\"raw_author_name\":\"Bertrand Thirion\",\"raw_affiliation_strings\":[\"LNAO - Laboratoire de Neuroimagerie Assist\\u00e9e par Ordinateur (France)\",\"PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, B\\u00e2timent 145, 91191 Gif-sur-Yvette Cedex - France)\"],\"affiliations\":[{\"raw_affiliation_string\":\"LNAO - Laboratoire de Neuroimagerie Assist\\u00e9e par Ordinateur (France)\",\"institution_ids\":[]},{\"raw_affiliation_string\":\"PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, B\\u00e2timent 145, 91191 Gif-sur-Yvette Cedex - France)\",\"institution_ids\":[\"https://openalex.org/I2738703131\",\"https://openalex.org/I4210128565\"]}]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5033960843\",\"display_name\":\"Olivier Grisel\",\"orcid\":\"https://orcid.org/0009-0006-0406-5989\"},\"institutions\":[{\"id\":\"https://openalex.org/I4210131947\",\"display_name\":\"Nuxe (France)\",\"ror\":\"https://ror.org/02m7qby09\",\"country_code\":\"FR\",\"type\":\"company\",\"lineage\":[\"https://openalex.org/I4210131947\"]}],\"countries\":[\"FR\"],\"is_corresponding\":false,\"raw_author_name\":\"Olivier Grisel\",\"raw_affiliation_strings\":[\"Nuxeo (18-20 rue Soleillet 75020 Paris - France)\"],\"affiliations\":[{\"raw_affiliation_string\":\"Nuxeo (18-20 rue Soleillet 75020 Paris - France)\",\"institution_ids\":[\"https://openalex.org/I4210131947\"]}]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5049123454\",\"display_name\":\"Mathieu Blondel\",\"orcid\":\"https://orcid.org/0000-0002-2366-2993\"},\"institutions\":[{\"id\":\"https://openalex.org/I65837984\",\"display_name\":\"Kobe University\",\"ror\":\"https://ror.org/03tgsfw79\",\"country_code\":\"JP\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I65837984\"]}],\"countries\":[\"JP\"],\"is_corresponding\":false,\"raw_author_name\":\"Mathieu Blondel\",\"raw_affiliation_strings\":[\"Kobe University (Japan)\"],\"affiliations\":[{\"raw_affiliation_string\":\"Kobe University (Japan)\",\"institution_ids\":[\"https://openalex.org/I65837984\"]}]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5088660184\",\"display_name\":\"Peter Prettenhofer\",\"orcid\":null},\"institutions\":[{\"id\":\"https://openalex.org/I51441396\",\"display_name\":\"Bauhaus-Universit\\u00e4t Weimar\",\"ror\":\"https://ror.org/033bb5z47\",\"country_code\":\"DE\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I51441396\"]}],\"countries\":[\"DE\"],\"is_corresponding\":false,\"raw_author_name\":\"Peter Prettenhofer\",\"raw_affiliation_strings\":[\"Bauhaus-Universit\\u00e4t Weimar (Geschwister-Scholl-Stra\\u00dfe 8 99423 Weimar - Germany)\"],\"affiliations\":[{\"raw_affiliation_string\":\"Bauhaus-Universit\\u00e4t Weimar (Geschwister-Scholl-Stra\\u00dfe 8 99423 Weimar - Germany)\",\"institution_ids\":[\"https://openalex.org/I51441396\"]}]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5103273436\",\"display_name\":\"Ron J. Weiss\",\"orcid\":\"https://orcid.org/0000-0003-2010-4053\"},\"institutions\":[{\"id\":\"https://openalex.org/I4210148186\",\"display_name\":\"Google (Canada)\",\"ror\":\"https://ror.org/04d06q394\",\"country_code\":\"CA\",\"type\":\"company\",\"lineage\":[\"https://openalex.org/I1291425158\",\"https://openalex.org/I4210128969\",\"https://openalex.org/I4210148186\"]}],\"countries\":[\"CA\"],\"is_corresponding\":false,\"raw_author_name\":\"Ron Weiss\",\"raw_affiliation_strings\":[\"Google Inc (Toronto - Canada)\"],\"affiliations\":[{\"raw_affiliation_string\":\"Google Inc (Toronto - Canada)\",\"institution_ids\":[\"https://openalex.org/I4210148186\"]}]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5087957070\",\"display_name\":\"Vincent Dubourg\",\"orcid\":null},\"institutions\":[],\"countries\":[\"FR\"],\"is_corresponding\":false,\"raw_author_name\":\"Vincent Dubourg\",\"raw_affiliation_strings\":[\"LAMI - Laboratoire de M\\u00e9canique et Ing\\u00e9nieries (IFMA. Campus des C\\u00e9zeaux BP 265 63175 Aubi\\u00e8re Cedex - France)\"],\"affiliations\":[{\"raw_affiliation_string\":\"LAMI - Laboratoire de M\\u00e9canique et Ing\\u00e9nieries (IFMA. Campus des C\\u00e9zeaux BP 265 63175 Aubi\\u00e8re Cedex - France)\",\"institution_ids\":[]}]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5038304150\",\"display_name\":\"Jake Vanderplas\",\"orcid\":\"https://orcid.org/0000-0002-9623-3401\"},\"institutions\":[{\"id\":\"https://openalex.org/I201448701\",\"display_name\":\"University of Washington\",\"ror\":\"https://ror.org/00cvxb145\",\"country_code\":\"US\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I201448701\"]}],\"countries\":[\"US\"],\"is_corresponding\":false,\"raw_author_name\":\"Jake Vanderplas\",\"raw_affiliation_strings\":[\"University of Washington [Seattle] (Seattle, Washington 98105 - United States)\"],\"affiliations\":[{\"raw_affiliation_string\":\"University of Washington [Seattle] (Seattle, Washington 98105 - United States)\",\"institution_ids\":[\"https://openalex.org/I201448701\"]}]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5034029772\",\"display_name\":\"Alexandre Passos\",\"orcid\":null},\"institutions\":[{\"id\":\"https://openalex.org/I177605424\",\"display_name\":\"Amherst College\",\"ror\":\"https://ror.org/028vqfs63\",\"country_code\":\"US\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I177605424\"]},{\"id\":\"https://openalex.org/I24603500\",\"display_name\":\"University of Massachusetts Amherst\",\"ror\":\"https://ror.org/0072zz521\",\"country_code\":\"US\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I24603500\"]}],\"countries\":[\"US\"],\"is_corresponding\":false,\"raw_author_name\":\"Alexandre Passos\",\"raw_affiliation_strings\":[\"Department of Mechanical and Industrial Engineering [UMass] (UMass Amherst College of Engineering Department of Mechanical and Industrial Engineering, 220 ELAB, University of Massachusetts Amherst, MA 01003-2210 - United States)\"],\"affiliations\":[{\"raw_affiliation_string\":\"Department of Mechanical and Industrial Engineering [UMass] (UMass Amherst College of Engineering Department of Mechanical and Industrial Engineering, 220 ELAB, University of Massachusetts Amherst, MA 01003-2210 - United States)\",\"institution_ids\":[\"https://openalex.org/I177605424\",\"https://openalex.org/I24603500\"]}]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5023051838\",\"display_name\":\"David Cournapeau\",\"orcid\":null},\"institutions\":[{\"id\":\"https://openalex.org/I4210121859\",\"display_name\":\"Enthought (United States)\",\"ror\":\"https://ror.org/02xfc1977\",\"country_code\":\"US\",\"type\":\"company\",\"lineage\":[\"https://openalex.org/I4210121859\"]}],\"countries\":[\"US\"],\"is_corresponding\":false,\"raw_author_name\":\"David Cournapeau\",\"raw_affiliation_strings\":[\"Enthought Inc (515 Congress Avenue Suite 2100 Austin, TX 78701 - United States)\"],\"affiliations\":[{\"raw_affiliation_string\":\"Enthought Inc (515 Congress Avenue Suite 2100 Austin, TX 78701 - United States)\",\"institution_ids\":[\"https://openalex.org/I4210121859\"]}]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5050910015\",\"display_name\":\"Matthieu Brucher\",\"orcid\":null},\"institutions\":[{\"id\":\"https://openalex.org/I103084370\",\"display_name\":\"Total (France)\",\"ror\":\"https://ror.org/04sk34n56\",\"country_code\":\"FR\",\"type\":\"company\",\"lineage\":[\"https://openalex.org/I103084370\"]}],\"countries\":[\"FR\"],\"is_corresponding\":false,\"raw_author_name\":\"Matthieu Brucher\",\"raw_affiliation_strings\":[\"TOTAL S.A. (France)\"],\"affiliations\":[{\"raw_affiliation_string\":\"TOTAL S.A. (France)\",\"institution_ids\":[\"https://openalex.org/I103084370\"]}]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5051111217\",\"display_name\":\"Marc de Perrot\",\"orcid\":\"https://orcid.org/0000-0003-2000-9427\"},\"institutions\":[],\"countries\":[\"FR\"],\"is_corresponding\":false,\"raw_author_name\":\"Matthieu Perrot\",\"raw_affiliation_strings\":[\"LNAO (France)\"],\"affiliations\":[{\"raw_affiliation_string\":\"LNAO (France)\",\"institution_ids\":[]}]},{\"author_position\":\"last\",\"author\":{\"id\":\"https://openalex.org/A5007095962\",\"display_name\":\"\\u00c9douard Duchesnay\",\"orcid\":\"https://orcid.org/0000-0002-4073-3490\"},\"institutions\":[],\"countries\":[\"FR\"],\"is_corresponding\":false,\"raw_author_name\":\"\\u00c9douard Duchesnay\",\"raw_affiliation_strings\":[\"LNAO - Laboratoire de Neuroimagerie Assist\\u00e9e par Ordinateur (France)\"],\"affiliations\":[{\"raw_affiliation_string\":\"LNAO - Laboratoire de Neuroimagerie Assist\\u00e9e par Ordinateur (France)\",\"institution_ids\":[]}]}],\"countries_distinct_count\":5,\"institutions_distinct_count\":11,\"corresponding_author_ids\":[],\"corresponding_institution_ids\":[],\"apc_list\":null,\"apc_paid\":null,\"fwci\":null,\"has_fulltext\":false,\"cited_by_count\":39943,\"cited_by_percentile_year\":{\"min\":99,\"max\":100},\"biblio\":{\"volume\":null,\"issue\":null,\"first_page\":null,\"last_page\":null},\"is_retracted\":false,\"is_paratext\":false,\"primary_topic\":{\"id\":\"https://openalex.org/T13650\",\"display_name\":\"Scientific Computing and Data Analysis with Python\",\"score\":0.9945,\"subfield\":{\"id\":\"https://openalex.org/subfields/1702\",\"display_name\":\"Artificial Intelligence\"},\"field\":{\"id\":\"https://openalex.org/fields/17\",\"display_name\":\"Computer Science\"},\"domain\":{\"id\":\"https://openalex.org/domains/3\",\"display_name\":\"Physical Sciences\"}},\"topics\":[{\"id\":\"https://openalex.org/T13650\",\"display_name\":\"Scientific Computing and Data Analysis with Python\",\"score\":0.9945,\"subfield\":{\"id\":\"https://openalex.org/subfields/1702\",\"display_name\":\"Artificial Intelligence\"},\"field\":{\"id\":\"https://openalex.org/fields/17\",\"display_name\":\"Computer Science\"},\"domain\":{\"id\":\"https://openalex.org/domains/3\",\"display_name\":\"Physical Sciences\"}},{\"id\":\"https://openalex.org/T12535\",\"display_name\":\"Learning with Noisy Labels in Machine Learning\",\"score\":0.9859,\"subfield\":{\"id\":\"https://openalex.org/subfields/1702\",\"display_name\":\"Artificial Intelligence\"},\"field\":{\"id\":\"https://openalex.org/fields/17\",\"display_name\":\"Computer Science\"},\"domain\":{\"id\":\"https://openalex.org/domains/3\",\"display_name\":\"Physical Sciences\"}},{\"id\":\"https://openalex.org/T11512\",\"display_name\":\"Anomaly Detection in High-Dimensional Data\",\"score\":0.9749,\"subfield\":{\"id\":\"https://openalex.org/subfields/1702\",\"display_name\":\"Artificial Intelligence\"},\"field\":{\"id\":\"https://openalex.org/fields/17\",\"display_name\":\"Computer Science\"},\"domain\":{\"id\":\"https://openalex.org/domains/3\",\"display_name\":\"Physical Sciences\"}}],\"keywords\":[{\"id\":\"https://openalex.org/keywords/python\",\"display_name\":\"Python\",\"score\":0.532244},{\"id\":\"https://openalex.org/keywords/robust-learning\",\"display_name\":\"Robust Learning\",\"score\":0.507829}],\"concepts\":[{\"id\":\"https://openalex.org/C519991488\",\"wikidata\":\"https://www.wikidata.org/wiki/Q28865\",\"display_name\":\"Python (programming language)\",\"level\":2,\"score\":0.87480295},{\"id\":\"https://openalex.org/C56666940\",\"wikidata\":\"https://www.wikidata.org/wiki/Q788790\",\"display_name\":\"Documentation\",\"level\":2,\"score\":0.834846},{\"id\":\"https://openalex.org/C41008148\",\"wikidata\":\"https://www.wikidata.org/wiki/Q21198\",\"display_name\":\"Computer science\",\"level\":0,\"score\":0.7323823},{\"id\":\"https://openalex.org/C174183944\",\"wikidata\":\"https://www.wikidata.org/wiki/Q334661\",\"display_name\":\"MIT License\",\"level\":3,\"score\":0.5501255},{\"id\":\"https://openalex.org/C154945302\",\"wikidata\":\"https://www.wikidata.org/wiki/Q11660\",\"display_name\":\"Artificial intelligence\",\"level\":1,\"score\":0.51199156},{\"id\":\"https://openalex.org/C119857082\",\"wikidata\":\"https://www.wikidata.org/wiki/Q2539\",\"display_name\":\"Machine learning\",\"level\":1,\"score\":0.43965548},{\"id\":\"https://openalex.org/C199360897\",\"wikidata\":\"https://www.wikidata.org/wiki/Q9143\",\"display_name\":\"Programming language\",\"level\":1,\"score\":0.39753842},{\"id\":\"https://openalex.org/C2780560020\",\"wikidata\":\"https://www.wikidata.org/wiki/Q79719\",\"display_name\":\"License\",\"level\":2,\"score\":0.35676372},{\"id\":\"https://openalex.org/C115903868\",\"wikidata\":\"https://www.wikidata.org/wiki/Q80993\",\"display_name\":\"Software engineering\",\"level\":1,\"score\":0.34812212},{\"id\":\"https://openalex.org/C111919701\",\"wikidata\":\"https://www.wikidata.org/wiki/Q9135\",\"display_name\":\"Operating system\",\"level\":1,\"score\":0.18154305}],\"mesh\":[],\"locations_count\":4,\"locations\":[{\"is_oa\":true,\"landing_page_url\":\"https://arxiv.org/abs/1201.0490\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S4306400194\",\"display_name\":\"arXiv (Cornell University)\",\"issn_l\":null,\"issn\":null,\"is_oa\":true,\"is_in_doaj\":false,\"is_core\":false,\"host_organization\":\"https://openalex.org/I205783295\",\"host_organization_name\":\"Cornell University\",\"host_organization_lineage\":[\"https://openalex.org/I205783295\"],\"host_organization_lineage_names\":[\"Cornell University\"],\"type\":\"repository\"},\"license\":\"other-oa\",\"license_id\":\"https://openalex.org/licenses/other-oa\",\"version\":null,\"is_accepted\":false,\"is_published\":false},{\"is_oa\":true,\"landing_page_url\":\"https://inria.hal.science/hal-00650905\",\"pdf_url\":\"https://inria.hal.science/hal-00650905/document\",\"source\":{\"id\":\"https://openalex.org/S4306402512\",\"display_name\":\"HAL (Le Centre pour la Communication Scientifique Directe)\",\"issn_l\":null,\"issn\":null,\"is_oa\":true,\"is_in_doaj\":false,\"is_core\":false,\"host_organization\":\"https://openalex.org/I1294671590\",\"host_organization_name\":\"Centre National de la Recherche Scientifique\",\"host_organization_lineage\":[\"https://openalex.org/I1294671590\"],\"host_organization_lineage_names\":[\"Centre National de la Recherche Scientifique\"],\"type\":\"repository\"},\"license\":null,\"license_id\":null,\"version\":\"submittedVersion\",\"is_accepted\":false,\"is_published\":false},{\"is_oa\":true,\"landing_page_url\":\"https://orbi.uliege.be/handle/2268/225787\",\"pdf_url\":\"https://orbi.uliege.be/bitstream/2268/225787/1/1201.0490.pdf\",\"source\":{\"id\":\"https://openalex.org/S4306400651\",\"display_name\":\"Open Repository and Bibliography (University of Li\\u00e8ge)\",\"issn_l\":null,\"issn\":null,\"is_oa\":true,\"is_in_doaj\":false,\"is_core\":false,\"host_organization\":\"https://openalex.org/I157674565\",\"host_organization_name\":\"University of Li\\u00e8ge\",\"host_organization_lineage\":[\"https://openalex.org/I157674565\"],\"host_organization_lineage_names\":[\"University of Li\\u00e8ge\"],\"type\":\"repository\"},\"license\":null,\"license_id\":null,\"version\":\"submittedVersion\",\"is_accepted\":false,\"is_published\":false},{\"is_oa\":false,\"landing_page_url\":\"https://api.datacite.org/dois/10.48550/arxiv.1201.0490\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S4393179698\",\"display_name\":\"DataCite API\",\"issn_l\":null,\"issn\":null,\"is_oa\":true,\"is_in_doaj\":false,\"is_core\":false,\"host_organization\":\"https://openalex.org/I4210145204\",\"host_organization_name\":\"DataCite\",\"host_organization_lineage\":[\"https://openalex.org/I4210145204\"],\"host_organization_lineage_names\":[\"DataCite\"],\"type\":\"metadata\"},\"license\":null,\"license_id\":null,\"version\":null}],\"best_oa_location\":{\"is_oa\":true,\"landing_page_url\":\"https://arxiv.org/abs/1201.0490\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S4306400194\",\"display_name\":\"arXiv (Cornell University)\",\"issn_l\":null,\"issn\":null,\"is_oa\":true,\"is_in_doaj\":false,\"is_core\":false,\"host_organization\":\"https://openalex.org/I205783295\",\"host_organization_name\":\"Cornell University\",\"host_organization_lineage\":[\"https://openalex.org/I205783295\"],\"host_organization_lineage_names\":[\"Cornell University\"],\"type\":\"repository\"},\"license\":\"other-oa\",\"license_id\":\"https://openalex.org/licenses/other-oa\",\"version\":null,\"is_accepted\":false,\"is_published\":false},\"sustainable_development_goals\":[{\"display_name\":\"Quality education\",\"id\":\"https://metadata.un.org/sdg/4\",\"score\":0.44}],\"grants\":[],\"datasets\":[],\"versions\":[],\"referenced_works_count\":13,\"referenced_works\":[\"https://openalex.org/W1496508106\",\"https://openalex.org/W1571024744\",\"https://openalex.org/W2024933578\",\"https://openalex.org/W2035776949\",\"https://openalex.org/W2040387238\",\"https://openalex.org/W2047804403\",\"https://openalex.org/W2063978378\",\"https://openalex.org/W2097360283\",\"https://openalex.org/W2097850441\",\"https://openalex.org/W2118585731\",\"https://openalex.org/W2146292423\",\"https://openalex.org/W2152799677\",\"https://openalex.org/W2153635508\"],\"related_works\":[\"https://openalex.org/W4392173297\",\"https://openalex.org/W4311683883\",\"https://openalex.org/W4221030787\",\"https://openalex.org/W4212902261\",\"https://openalex.org/W2790811106\",\"https://openalex.org/W2546377002\",\"https://openalex.org/W2207495067\",\"https://openalex.org/W2132241624\",\"https://openalex.org/W2036021480\",\"https://openalex.org/W1906486629\"],\"ngrams_url\":\"https://api.openalex.org/works/W2101234009/ngrams\",\"abstract_inverted_index\":{\"Scikit-learn\":[0],\"is\":[1,35,51],\"a\":[2,6,30],\"Python\":[3],\"module\":[4],\"integrating\":[5],\"wide\":[7],\"range\":[8],\"of\":[9,39],\"state-of-the-art\":[10],\"machine\":[11,25],\"learning\":[12,26],\"algorithms\":[13],\"for\":[14],\"medium-scale\":[15],\"supervised\":[16],\"and\":[17,43,50,64,70],\"unsupervised\":[18],\"problems.\":[19],\"This\":[20],\"package\":[21],\"focuses\":[22],\"on\":[23,37],\"bringing\":[24],\"to\":[27],\"non-specialists\":[28],\"using\":[29],\"general-purpose\":[31],\"high-level\":[32],\"language.\":[33],\"Emphasis\":[34],\"put\":[36],\"ease\":[38],\"use,\":[40],\"performance,\":[41],\"documentation,\":[42],\"API\":[44],\"consistency.\":[45],\"It\":[46],\"has\":[47],\"minimal\":[48],\"dependencies\":[49],\"distributed\":[52],\"under\":[53],\"the\":[54],\"simplified\":[55],\"BSD\":[56],\"license,\":[57],\"encouraging\":[58],\"its\":[59],\"use\":[60],\"in\":[61],\"both\":[62],\"academic\":[63],\"commercial\":[65],\"settings.\":[66],\"Source\":[67],\"code,\":[68],\"binaries,\":[69],\"documentation\":[71],\"can\":[72],\"be\":[73],\"downloaded\":[74],\"from\":[75],\"http://scikit-learn.org.\":[76]},\"cited_by_api_url\":\"https://api.openalex.org/works?filter=cites:W2101234009\",\"counts_by_year\":[{\"year\":2024,\"cited_by_count\":2991},{\"year\":2023,\"cited_by_count\":5425},{\"year\":2022,\"cited_by_count\":4906},{\"year\":2021,\"cited_by_count\":5734},{\"year\":2020,\"cited_by_count\":4486},{\"year\":2019,\"cited_by_count\":3155},{\"year\":2018,\"cited_by_count\":2112},{\"year\":2017,\"cited_by_count\":1343},{\"year\":2016,\"cited_by_count\":957},{\"year\":2015,\"cited_by_count\":675},{\"year\":2014,\"cited_by_count\":394},{\"year\":2013,\"cited_by_count\":173},{\"year\":2012,\"cited_by_count\":45}],\"updated_date\":\"2024-07-24T02:32:32.187119\",\"created_date\":\"2016-06-24\"}\n",
"items": [
{
"itemType": "preprint",
"title": "Scikit-learn: Machine Learning in Python",
"creators": [
{
"firstName": "Fabián",
"lastName": "Pedregosa",
"creatorType": "author"
},
{
"firstName": "Gaël",
"lastName": "Varoquaux",
"creatorType": "author"
},
{
"firstName": "Alexandre",
"lastName": "Gramfort",
"creatorType": "author"
},
{
"firstName": "Vincent",
"lastName": "Michel",
"creatorType": "author"
},
{
"firstName": "Bertrand",
"lastName": "Thirion",
"creatorType": "author"
},
{
"firstName": "Olivier",
"lastName": "Grisel",
"creatorType": "author"
},
{
"firstName": "Mathieu",
"lastName": "Blondel",
"creatorType": "author"
},
{
"firstName": "Peter",
"lastName": "Prettenhofer",
"creatorType": "author"
},
{
"firstName": "Ron J.",
"lastName": "Weiss",
"creatorType": "author"
},
{
"firstName": "Vincent",
"lastName": "Dubourg",
"creatorType": "author"
},
{
"firstName": "Jake",
"lastName": "Vanderplas",
"creatorType": "author"
},
{
"firstName": "Alexandre",
"lastName": "Passos",
"creatorType": "author"
},
{
"firstName": "David",
"lastName": "Cournapeau",
"creatorType": "author"
},
{
"firstName": "Matthieu",
"lastName": "Brucher",
"creatorType": "author"
},
{
"firstName": "Marc de",
"lastName": "Perrot",
"creatorType": "author"
},
{
"firstName": "Édouard",
"lastName": "Duchesnay",
"creatorType": "author"
}
],
"date": "2012-01-01",
"DOI": "10.48550/arxiv.1201.0490",
"extra": "OpenAlex: https://openalex.org/W2101234009",
"language": "en",
"repository": "Cornell University",
"attachments": [],
"tags": [
{
"tag": "Python"
},
{
"tag": "Robust Learning"
}
],
"notes": [],
"seeAlso": []
}
]
}
]
/** END TEST CASES **/