sources
Data license: CC-BY
1 row where datasetId = 5763 sorted by id descending
This data as json, CSV (advanced)
Suggested facets: createdAt (date), updatedAt (date)
id ▲ | name | description | createdAt | updatedAt | datasetId | additionalInfo | link | dataPublishedBy |
---|---|---|---|---|---|---|---|---|
27031 | AI Index Report (2022) | { "link": "https://aiindex.stanford.edu/report/", "retrievedDate": "2022-12-01", "additionalInfo": "The AI Index is an independent initiative at the Stanford University Institute for Human-Centered Artificial Intelligence.\n\nThe mission of the AI Index is \u201cto provide unbiased, rigorously vetted, and globally sourced data for policymakers, researchers, executives, journalists, and the general public to develop intuitions about the complex field of AI.\u201d\n\nTheir flagship output is the annual AI Index Report, which has been published since 2017.", "dataPublishedBy": "Daniel Zhang, Nestor Maslej, Erik Brynjolfsson, John Etchemendy, Terah Lyons, James Manyika, Helen Ngo, Juan Carlos Niebles, Michael Sellitto, Ellie Sakhaee, Yoav Shoham, Jack Clark, and Raymond Perrault, \u201cThe AI Index 2022 Annual Report,\u201d AI Index Steering Committee, Stanford Institute for Human-Centered AI, Stanford University, March 2022.", "dataPublisherSource": "AI Index Report (2022)" } |
2022-09-13 12:36:24 | 2022-09-13 12:36:24 | AI Index Report (2022) 5763 | The AI Index is an independent initiative at the Stanford University Institute for Human-Centered Artificial Intelligence. The mission of the AI Index is “to provide unbiased, rigorously vetted, and globally sourced data for policymakers, researchers, executives, journalists, and the general public to develop intuitions about the complex field of AI.” Their flagship output is the annual AI Index Report, which has been published since 2017. | https://aiindex.stanford.edu/report/ | Daniel Zhang, Nestor Maslej, Erik Brynjolfsson, John Etchemendy, Terah Lyons, James Manyika, Helen Ngo, Juan Carlos Niebles, Michael Sellitto, Ellie Sakhaee, Yoav Shoham, Jack Clark, and Raymond Perrault, “The AI Index 2022 Annual Report,” AI Index Steering Committee, Stanford Institute for Human-Centered AI, Stanford University, March 2022. |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "sources" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT, "name" VARCHAR(512) NULL , "description" TEXT NOT NULL , "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP , "updatedAt" DATETIME NULL , "datasetId" INTEGER NULL, additionalInfo TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.additionalInfo')) VIRTUAL, link TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.link')) VIRTUAL, dataPublishedBy TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.dataPublishedBy')) VIRTUAL, FOREIGN KEY("datasetId") REFERENCES "datasets" ("id") ON UPDATE RESTRICT ON DELETE RESTRICT ); CREATE INDEX "sources_datasetId" ON "sources" ("datasetId");