sources
Data license: CC-BY
1 row where datasetId = 5654 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 |
---|---|---|---|---|---|---|---|---|
22714 | Sun et al., Median Group via Epoch (2022) | { "link": "https://epochai.org/blog/trends-in-gpu-price-performance", "retrievedDate": "2022-07-12", "additionalInfo": "This dataset by the research group Epoch collates two existing datasets on GPU price-performance:\n\u2022 Median Group (2019). <a href=\"http://mediangroup.org/docs/Feasibility%20of%20Training%20an%20AGI%20using%20Deep%20Reinforcement%20Learning,%20A%20Very%20Rough%20Estimate.pdf\" target=\u201d_blank\u201d>Feasibility of Training an AGI using Deep RL: A Very Rough Estimate</a>.\n\u2022 Sun et al. (2019). <a href=\"https://arxiv.org/pdf/1911.11313.pdf\" target=\u201d_blank\u201d>Summarizing CPU and GPU Design Trends with Product Data</a>. arXiv.\n\nThe <a href=\"https://epochai.org/blog/trends-in-gpu-price-performance\" target=\u201d_blank\u201d>report by Epoch researchers Hobbhahn & Besiroglu (2022)</a> describes their collation method, as well as their findings from statistically analyzing the trends in GPU price-performance.", "dataPublishedBy": "Hobbhahn and Besiroglu (2022), \"Trends in GPU price-performance\". Published online at epochai.org. Retrieved from: 'https://epochai.org/blog/trends-in-gpu-price-performance' [online resource]" } |
2022-07-12 19:57:40 | 2023-03-01 08:20:53 | GPU Price-Performance Data – Epoch (2022) 5654 | This dataset by the research group Epoch collates two existing datasets on GPU price-performance: • Median Group (2019). <a href="http://mediangroup.org/docs/Feasibility%20of%20Training%20an%20AGI%20using%20Deep%20Reinforcement%20Learning,%20A%20Very%20Rough%20Estimate.pdf" target=”_blank”>Feasibility of Training an AGI using Deep RL: A Very Rough Estimate</a>. • Sun et al. (2019). <a href="https://arxiv.org/pdf/1911.11313.pdf" target=”_blank”>Summarizing CPU and GPU Design Trends with Product Data</a>. arXiv. The <a href="https://epochai.org/blog/trends-in-gpu-price-performance" target=”_blank”>report by Epoch researchers Hobbhahn & Besiroglu (2022)</a> describes their collation method, as well as their findings from statistically analyzing the trends in GPU price-performance. | https://epochai.org/blog/trends-in-gpu-price-performance | Hobbhahn and Besiroglu (2022), "Trends in GPU price-performance". Published online at epochai.org. Retrieved from: 'https://epochai.org/blog/trends-in-gpu-price-performance' [online resource] |
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");