sources
Data license: CC-BY
2 rows where datasetId = 6101 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 |
---|---|---|---|---|---|---|---|---|
29575 | International Federation of Robotics (IFR) via AI Index (2023) | { "link": "https://drive.google.com/drive/folders/1ma9WZJzKreS8f2It1rMy_KkkbX6XwDOK", "retrievedDate": "2023-06-19", "additionalInfo": "\nAnnually, the IFR publishes the World Robotics Report, which provides comprehensive insights into global trends concerning robot installations.\n\nBy monitoring the installation of industrial robots, which often incorporate AI-based software technologies, it becomes feasible to gather valuable information about the implementation of AI-ready infrastructure in real-world scenarios. This data is sourced from the International Federation of Robotics (IFR), a nonprofit organization dedicated to the advancement and safeguarding of the robotics industry.\n\nThe AI Index is an independent initiative at the Stanford University Institute for Human-Centered Artificial Intelligence. The 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 Their flagship output is the annual AI Index Report, which has been published since 2017.\n", "dataPublishedBy": "International Federation of Robotics (IFR) via the AI Index 2023 Annual Report, AI Index Steering Committee, Institute for Human-Centered AI, Stanford University, Stanford, CA, April 2023" } |
2023-12-14 12:06:40 | 2024-05-05 18:59:42 | AI Industrial Robots 6101 | Annually, the IFR publishes the World Robotics Report, which provides comprehensive insights into global trends concerning robot installations. By monitoring the installation of industrial robots, which often incorporate AI-based software technologies, it becomes feasible to gather valuable information about the implementation of AI-ready infrastructure in real-world scenarios. This data is sourced from the International Federation of Robotics (IFR), a nonprofit organization dedicated to the advancement and safeguarding of the robotics industry. 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://drive.google.com/drive/folders/1ma9WZJzKreS8f2It1rMy_KkkbX6XwDOK | International Federation of Robotics (IFR) via the AI Index 2023 Annual Report, AI Index Steering Committee, Institute for Human-Centered AI, Stanford University, Stanford, CA, April 2023 |
27883 | International Federation of Robotics (IFR) via AI Index (2023) | { "link": "https://drive.google.com/drive/folders/1ma9WZJzKreS8f2It1rMy_KkkbX6XwDOK", "retrievedDate": "2023-06-19", "additionalInfo": "Annually, the IFR publishes the World Robotics Report, which provides comprehensive insights into global trends concerning robot installations.\n\nBy monitoring the installation of industrial robots, which often incorporate AI-based software technologies, it becomes feasible to gather valuable information about the implementation of AI-ready infrastructure in real-world scenarios. This data is sourced from the International Federation of Robotics (IFR), a nonprofit organization dedicated to the advancement and safeguarding of the robotics industry.\n\nThe AI Index is an independent initiative at the Stanford University Institute for Human-Centered Artificial Intelligence. The 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 Their flagship output is the annual AI Index Report, which has been published since 2017.\n", "dataPublishedBy": "International Federation of Robotics (IFR) via the AI Index 2023 Annual Report, AI Index Steering Committee, Institute for Human-Centered AI, Stanford University, Stanford, CA, April 2023" } |
2023-07-03 14:53:09 | 2024-05-05 18:59:40 | AI Industrial Robots 6101 | Annually, the IFR publishes the World Robotics Report, which provides comprehensive insights into global trends concerning robot installations. By monitoring the installation of industrial robots, which often incorporate AI-based software technologies, it becomes feasible to gather valuable information about the implementation of AI-ready infrastructure in real-world scenarios. This data is sourced from the International Federation of Robotics (IFR), a nonprofit organization dedicated to the advancement and safeguarding of the robotics industry. 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://drive.google.com/drive/folders/1ma9WZJzKreS8f2It1rMy_KkkbX6XwDOK | International Federation of Robotics (IFR) via the AI Index 2023 Annual Report, AI Index Steering Committee, Institute for Human-Centered AI, Stanford University, Stanford, CA, April 2023 |
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");