summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjules@lens <julescarbon@gmail.com>2019-03-30 15:15:12 +0100
committerjules@lens <julescarbon@gmail.com>2019-03-30 15:15:12 +0100
commit90579a6ef41c4920034e73ef39365acc27cd8022 (patch)
tree743239148b1aa8ae2dc50d71a8f279309869c4d5
parentd982ad1d50a6c7ff749d2508df5f1e7f6576a5b1 (diff)
parentb9944ee1a4b07edda741cdfc89abf0715f65a164 (diff)
Merge branch 'master' of asdf.us:megapixels_dev
-rw-r--r--client/map/index.js3
-rw-r--r--client/tables.js11
-rw-r--r--scraper/client/paper/citationList.component.js6
-rw-r--r--scraper/client/paper/paper.verify.js18
-rw-r--r--site/includes/chart.html2
-rw-r--r--site/includes/citations.html2
-rw-r--r--site/includes/map.html2
-rw-r--r--site/public/datasets/50_people_one_question/index.html4
-rw-r--r--site/public/datasets/brainwash/index.html15
-rw-r--r--site/public/datasets/celeba/index.html4
-rw-r--r--site/public/datasets/cofw/index.html6
-rw-r--r--site/public/datasets/duke_mtmc/index.html25
-rw-r--r--site/public/datasets/hrt_transgender/index.html15
-rw-r--r--site/public/datasets/lfw/index.html15
-rw-r--r--site/public/datasets/market_1501/index.html4
-rw-r--r--site/public/datasets/pipa/index.html4
-rw-r--r--site/public/datasets/uccs/index.html25
-rw-r--r--site/public/datasets/viper/index.html15
18 files changed, 141 insertions, 35 deletions
diff --git a/client/map/index.js b/client/map/index.js
index 7c205268..4e6db2de 100644
--- a/client/map/index.js
+++ b/client/map/index.js
@@ -102,7 +102,8 @@ export default function append(el, payload) {
const citationAddress = citation.addresses[0]
const latlng = [citationAddress.lat, citationAddress.lng].map(n => parseFloat(n))
if (Number.isNaN(latlng[0]) || Number.isNaN(latlng[1])) return
- addMarker(map, latlng, citation.title, citationAddress.name, citation.year, citation.pdf)
+ const addressString = citation.addresses.map(addr => addr.name).join('<br/>')
+ addMarker(map, latlng, citation.title, addressString, citation.year, citation.pdf)
addArc(map, source, latlng, arcStyles[citationAddress.type])
})
diff --git a/client/tables.js b/client/tables.js
index 1077289f..9eedbe18 100644
--- a/client/tables.js
+++ b/client/tables.js
@@ -15,7 +15,9 @@ const citationsColumns = [
{ title: 'Institution', field: 'institution', sorter: 'string' },
{ title: 'Country', field: 'country', sorter: 'string', width: 140 },
{ title: 'Year', field: 'year', sorter: 'number', width: 70 },
- { title: 'PDF', field: 'pdf', formatter: 'link', sorter: 'string', width: 100 },
+ { title: 'PDF', field: 'pdf', formatter: 'link',
+ formatterParams: { target: "_blank", urlField: 'pdf', },
+ sorter: 'string', width: 100 },
]
function getColumns(payload) {
@@ -36,12 +38,17 @@ function getColumns(payload) {
function getCitations(dataset) {
// console.log(dataset.citations)
+ console.log(dataset.citations.map(d => [d.pdf, d.doi]))
return dataset.citations.map(citation => ({
title: citation.title,
institution: citation.addresses[0].name,
country: citation.addresses[0].country,
year: citation.year,
- pdf: (citation.pdf && citation.pdf.length) ? citation.pdf[0] : "",
+ pdf: (citation.pdf && citation.pdf.length)
+ ? citation.pdf[0]
+ : (citation.doi && citation.doi.length)
+ ? citation.doi[0]
+ : "",
}))
}
diff --git a/scraper/client/paper/citationList.component.js b/scraper/client/paper/citationList.component.js
index 10e3ba9a..b2b2ab8f 100644
--- a/scraper/client/paper/citationList.component.js
+++ b/scraper/client/paper/citationList.component.js
@@ -52,6 +52,12 @@ class CitationList extends Component {
? cite.pdf.map((pdf, i) => <a key={'pdf_' + i} href={pdf} rel='noopener noreferrer' target="_blank">[pdf]</a>)
: "no pdf"
}
+ cite.doi = {
+ _raw: true,
+ value: (cite.doi && cite.doi.length)
+ ? cite.doi.map((pdf, i) => <a key={'doi_' + i} href={doi} rel='noopener noreferrer' target="_blank">[doi]</a>)
+ : ""
+ }
cite.s2 = {
_raw: true,
value: <a
diff --git a/scraper/client/paper/paper.verify.js b/scraper/client/paper/paper.verify.js
index f5dbc13c..a60f9698 100644
--- a/scraper/client/paper/paper.verify.js
+++ b/scraper/client/paper/paper.verify.js
@@ -195,7 +195,7 @@ class PaperVerify extends Component {
<h3>{citation.title}</h3>
<div className='gray'>
{citation.id}
- {' | PDFs: '}
+ {citation.pdf.length ? ' | PDF: ' : ''}
{citation.pdf.map((pdf,i) => {
const domain = pdf.replace('www.','').split('/').slice(2,3)[0] || 'unknown'
return (
@@ -209,13 +209,27 @@ class PaperVerify extends Component {
</a>
)
})}
+ {citation.doi.length ? ' | DOI: ' : ''}
+ {citation.doi.map((doi,i) => {
+ const domain = doi.replace('www.','').split('/').slice(2,3)[0] || 'unknown'
+ return (
+ <a
+ key={i}
+ href={doi}
+ onClick={() => this.setState({ doi_index: i })}
+ className={i === this.state.doi_index ? 'selected pdfLink' : 'pdfLink'}
+ >
+ {'[' + domain + '] '}
+ </a>
+ )
+ })}
{' | '}
<a
href={'https://www.semanticscholar.org/paper/' + citation.id}
target="_blank"
className={'pdfLink'}
>
- {'[semantic scholar]'}
+ {'[s2]'}
</a>
</div>
diff --git a/site/includes/chart.html b/site/includes/chart.html
index 913e09b2..d5ca5e47 100644
--- a/site/includes/chart.html
+++ b/site/includes/chart.html
@@ -3,7 +3,7 @@
<p>
This bar chart presents a ranking of the top countries where citations originated. Mouse over individual columns
- to see yearly totals. Colors are only assigned to the top 10 overall countries.
+ to see yearly totals. These charts show only the top 10 countries overall.
</p>
</section>
diff --git a/site/includes/citations.html b/site/includes/citations.html
index a6aed039..b3d207c1 100644
--- a/site/includes/citations.html
+++ b/site/includes/citations.html
@@ -3,7 +3,7 @@
<h3>Citations</h3>
<p>
Citations were collected from <a href="https://www.semanticscholar.org">Semantic Scholar</a>, a website which aggregates
- and indexes research papers. Metadata was extracted from these papers, including extracting names of institutions automatically from PDFs, and then the addresses were geocoded. Data is not yet manually verified, and reflects anytime the paper was cited. Some papers may only mention the dataset in passing, while others use it as part of their research methodology.
+ and indexes research papers. The citations were geocoded using names of institutions found in the PDF front matter, or as listed on other resources. These papers have been manually verified to show that researchers downloaded and used the dataset to train and/or test machine learning algorithms.
</p>
<p>
Add button/link to download CSV
diff --git a/site/includes/map.html b/site/includes/map.html
index db36d4ee..14fec2f1 100644
--- a/site/includes/map.html
+++ b/site/includes/map.html
@@ -26,7 +26,7 @@
<div class="map-legend-item edu">Academic</div>
<div class="map-legend-item com">Industry</div>
<div class="map-legend-item gov">Government</div>
- Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and not yet manually verified.
+ Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and has been manually verified to show usage of {{ metadata.meta.dataset.name_display }}.
</div>
<section>
diff --git a/site/public/datasets/50_people_one_question/index.html b/site/public/datasets/50_people_one_question/index.html
index 73f9be97..bded7fbd 100644
--- a/site/public/datasets/50_people_one_question/index.html
+++ b/site/public/datasets/50_people_one_question/index.html
@@ -59,7 +59,7 @@
<div class="map-legend-item edu">Academic</div>
<div class="map-legend-item com">Industry</div>
<div class="map-legend-item gov">Government</div>
- Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and not yet manually verified.
+ Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and has been manually verified to show usage of 50 People One Question Dataset.
</div>
<section>
@@ -80,7 +80,7 @@
<h3>Citations</h3>
<p>
Citations were collected from <a href="https://www.semanticscholar.org">Semantic Scholar</a>, a website which aggregates
- and indexes research papers. Metadata was extracted from these papers, including extracting names of institutions automatically from PDFs, and then the addresses were geocoded. Data is not yet manually verified, and reflects anytime the paper was cited. Some papers may only mention the dataset in passing, while others use it as part of their research methodology.
+ and indexes research papers. The citations were geocoded using names of institutions found in the PDF front matter, or as listed on other resources. These papers have been manually verified to show that researchers downloaded and used the dataset to train and/or test machine learning algorithms.
</p>
<p>
Add button/link to download CSV
diff --git a/site/public/datasets/brainwash/index.html b/site/public/datasets/brainwash/index.html
index 64dcdda7..c0479a17 100644
--- a/site/public/datasets/brainwash/index.html
+++ b/site/public/datasets/brainwash/index.html
@@ -37,7 +37,7 @@
<p>
This bar chart presents a ranking of the top countries where citations originated. Mouse over individual columns
- to see yearly totals. Colors are only assigned to the top 10 overall countries.
+ to see yearly totals. These charts show only the top 10 countries overall.
</p>
</section>
@@ -45,6 +45,15 @@
<section class="applet_container">
<div class="applet" data-payload="{&quot;command&quot;: &quot;chart&quot;}"></div>
</section><section>
+ <p>
+ These pie charts show overall totals based on country and institution type.
+ </p>
+
+ </section>
+
+<section class="applet_container">
+ <div class="applet" data-payload="{&quot;command&quot;: &quot;piechart&quot;}"></div>
+</section><section>
<h3>Information Supply Chain</h3>
<!--
@@ -72,7 +81,7 @@
<div class="map-legend-item edu">Academic</div>
<div class="map-legend-item com">Industry</div>
<div class="map-legend-item gov">Government</div>
- Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and not yet manually verified.
+ Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and has been manually verified to show usage of Brainwash Dataset.
</div>
<section>
@@ -94,7 +103,7 @@
<h3>Citations</h3>
<p>
Citations were collected from <a href="https://www.semanticscholar.org">Semantic Scholar</a>, a website which aggregates
- and indexes research papers. Metadata was extracted from these papers, including extracting names of institutions automatically from PDFs, and then the addresses were geocoded. Data is not yet manually verified, and reflects anytime the paper was cited. Some papers may only mention the dataset in passing, while others use it as part of their research methodology.
+ and indexes research papers. The citations were geocoded using names of institutions found in the PDF front matter, or as listed on other resources. These papers have been manually verified to show that researchers downloaded and used the dataset to train and/or test machine learning algorithms.
</p>
<p>
Add button/link to download CSV
diff --git a/site/public/datasets/celeba/index.html b/site/public/datasets/celeba/index.html
index 50e460b7..09347f10 100644
--- a/site/public/datasets/celeba/index.html
+++ b/site/public/datasets/celeba/index.html
@@ -59,7 +59,7 @@
<div class="map-legend-item edu">Academic</div>
<div class="map-legend-item com">Industry</div>
<div class="map-legend-item gov">Government</div>
- Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and not yet manually verified.
+ Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and has been manually verified to show usage of CelebA Dataset.
</div>
<section>
@@ -80,7 +80,7 @@
<h3>Citations</h3>
<p>
Citations were collected from <a href="https://www.semanticscholar.org">Semantic Scholar</a>, a website which aggregates
- and indexes research papers. Metadata was extracted from these papers, including extracting names of institutions automatically from PDFs, and then the addresses were geocoded. Data is not yet manually verified, and reflects anytime the paper was cited. Some papers may only mention the dataset in passing, while others use it as part of their research methodology.
+ and indexes research papers. The citations were geocoded using names of institutions found in the PDF front matter, or as listed on other resources. These papers have been manually verified to show that researchers downloaded and used the dataset to train and/or test machine learning algorithms.
</p>
<p>
Add button/link to download CSV
diff --git a/site/public/datasets/cofw/index.html b/site/public/datasets/cofw/index.html
index 31c577a2..3cc49db8 100644
--- a/site/public/datasets/cofw/index.html
+++ b/site/public/datasets/cofw/index.html
@@ -69,7 +69,7 @@ To increase the number of training images, and since COFW has the exact same la
<div class="map-legend-item edu">Academic</div>
<div class="map-legend-item com">Industry</div>
<div class="map-legend-item gov">Government</div>
- Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and not yet manually verified.
+ Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and has been manually verified to show usage of COFW Dataset.
</div>
<section>
@@ -90,7 +90,7 @@ To increase the number of training images, and since COFW has the exact same la
<h3>Citations</h3>
<p>
Citations were collected from <a href="https://www.semanticscholar.org">Semantic Scholar</a>, a website which aggregates
- and indexes research papers. Metadata was extracted from these papers, including extracting names of institutions automatically from PDFs, and then the addresses were geocoded. Data is not yet manually verified, and reflects anytime the paper was cited. Some papers may only mention the dataset in passing, while others use it as part of their research methodology.
+ and indexes research papers. The citations were geocoded using names of institutions found in the PDF front matter, or as listed on other resources. These papers have been manually verified to show that researchers downloaded and used the dataset to train and/or test machine learning algorithms.
</p>
<p>
Add button/link to download CSV
@@ -102,7 +102,7 @@ To increase the number of training images, and since COFW has the exact same la
<p>
This bar chart presents a ranking of the top countries where citations originated. Mouse over individual columns
- to see yearly totals. Colors are only assigned to the top 10 overall countries.
+ to see yearly totals. These charts show only the top 10 countries overall.
</p>
</section>
diff --git a/site/public/datasets/duke_mtmc/index.html b/site/public/datasets/duke_mtmc/index.html
index 40eb8c7e..3e0b6eb5 100644
--- a/site/public/datasets/duke_mtmc/index.html
+++ b/site/public/datasets/duke_mtmc/index.html
@@ -57,7 +57,7 @@
<div class="map-legend-item edu">Academic</div>
<div class="map-legend-item com">Industry</div>
<div class="map-legend-item gov">Government</div>
- Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and not yet manually verified.
+ Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and has been manually verified to show usage of Duke MTMC Dataset.
</div>
<section>
@@ -65,6 +65,27 @@
Standardized paragraph of text about the map. Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam eaque ipsa, quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt, explicabo.
</p>
</section><section>
+ <h3>Who used Duke MTMC Dataset?</h3>
+
+ <p>
+ This bar chart presents a ranking of the top countries where citations originated. Mouse over individual columns
+ to see yearly totals. These charts show only the top 10 countries overall.
+ </p>
+
+ </section>
+
+<section class="applet_container">
+ <div class="applet" data-payload="{&quot;command&quot;: &quot;chart&quot;}"></div>
+</section><section>
+ <p>
+ These pie charts show overall totals based on country and institution type.
+ </p>
+
+ </section>
+
+<section class="applet_container">
+ <div class="applet" data-payload="{&quot;command&quot;: &quot;piechart&quot;}"></div>
+</section><section>
<div class="hr-wave-holder">
@@ -78,7 +99,7 @@
<h3>Citations</h3>
<p>
Citations were collected from <a href="https://www.semanticscholar.org">Semantic Scholar</a>, a website which aggregates
- and indexes research papers. Metadata was extracted from these papers, including extracting names of institutions automatically from PDFs, and then the addresses were geocoded. Data is not yet manually verified, and reflects anytime the paper was cited. Some papers may only mention the dataset in passing, while others use it as part of their research methodology.
+ and indexes research papers. The citations were geocoded using names of institutions found in the PDF front matter, or as listed on other resources. These papers have been manually verified to show that researchers downloaded and used the dataset to train and/or test machine learning algorithms.
</p>
<p>
Add button/link to download CSV
diff --git a/site/public/datasets/hrt_transgender/index.html b/site/public/datasets/hrt_transgender/index.html
index 5211ac7e..8ebc063e 100644
--- a/site/public/datasets/hrt_transgender/index.html
+++ b/site/public/datasets/hrt_transgender/index.html
@@ -33,7 +33,7 @@
<p>
This bar chart presents a ranking of the top countries where citations originated. Mouse over individual columns
- to see yearly totals. Colors are only assigned to the top 10 overall countries.
+ to see yearly totals. These charts show only the top 10 countries overall.
</p>
</section>
@@ -41,6 +41,15 @@
<section class="applet_container">
<div class="applet" data-payload="{&quot;command&quot;: &quot;chart&quot;}"></div>
</section><section>
+ <p>
+ These pie charts show overall totals based on country and institution type.
+ </p>
+
+ </section>
+
+<section class="applet_container">
+ <div class="applet" data-payload="{&quot;command&quot;: &quot;piechart&quot;}"></div>
+</section><section>
<h3>Information Supply Chain</h3>
<!--
@@ -68,7 +77,7 @@
<div class="map-legend-item edu">Academic</div>
<div class="map-legend-item com">Industry</div>
<div class="map-legend-item gov">Government</div>
- Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and not yet manually verified.
+ Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and has been manually verified to show usage of HRT Transgender.
</div>
<section>
@@ -89,7 +98,7 @@
<h3>Citations</h3>
<p>
Citations were collected from <a href="https://www.semanticscholar.org">Semantic Scholar</a>, a website which aggregates
- and indexes research papers. Metadata was extracted from these papers, including extracting names of institutions automatically from PDFs, and then the addresses were geocoded. Data is not yet manually verified, and reflects anytime the paper was cited. Some papers may only mention the dataset in passing, while others use it as part of their research methodology.
+ and indexes research papers. The citations were geocoded using names of institutions found in the PDF front matter, or as listed on other resources. These papers have been manually verified to show that researchers downloaded and used the dataset to train and/or test machine learning algorithms.
</p>
<p>
Add button/link to download CSV
diff --git a/site/public/datasets/lfw/index.html b/site/public/datasets/lfw/index.html
index 7e3a1bd5..199d7d57 100644
--- a/site/public/datasets/lfw/index.html
+++ b/site/public/datasets/lfw/index.html
@@ -72,7 +72,7 @@
<div class="map-legend-item edu">Academic</div>
<div class="map-legend-item com">Industry</div>
<div class="map-legend-item gov">Government</div>
- Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and not yet manually verified.
+ Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and has been manually verified to show usage of LFW.
</div>
<section>
@@ -84,7 +84,7 @@
<p>
This bar chart presents a ranking of the top countries where citations originated. Mouse over individual columns
- to see yearly totals. Colors are only assigned to the top 10 overall countries.
+ to see yearly totals. These charts show only the top 10 countries overall.
</p>
</section>
@@ -92,6 +92,15 @@
<section class="applet_container">
<div class="applet" data-payload="{&quot;command&quot;: &quot;chart&quot;}"></div>
</section><section>
+ <p>
+ These pie charts show overall totals based on country and institution type.
+ </p>
+
+ </section>
+
+<section class="applet_container">
+ <div class="applet" data-payload="{&quot;command&quot;: &quot;piechart&quot;}"></div>
+</section><section>
<div class="hr-wave-holder">
@@ -105,7 +114,7 @@
<h3>Citations</h3>
<p>
Citations were collected from <a href="https://www.semanticscholar.org">Semantic Scholar</a>, a website which aggregates
- and indexes research papers. Metadata was extracted from these papers, including extracting names of institutions automatically from PDFs, and then the addresses were geocoded. Data is not yet manually verified, and reflects anytime the paper was cited. Some papers may only mention the dataset in passing, while others use it as part of their research methodology.
+ and indexes research papers. The citations were geocoded using names of institutions found in the PDF front matter, or as listed on other resources. These papers have been manually verified to show that researchers downloaded and used the dataset to train and/or test machine learning algorithms.
</p>
<p>
Add button/link to download CSV
diff --git a/site/public/datasets/market_1501/index.html b/site/public/datasets/market_1501/index.html
index 2d357f47..a80c23fa 100644
--- a/site/public/datasets/market_1501/index.html
+++ b/site/public/datasets/market_1501/index.html
@@ -57,7 +57,7 @@
<div class="map-legend-item edu">Academic</div>
<div class="map-legend-item com">Industry</div>
<div class="map-legend-item gov">Government</div>
- Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and not yet manually verified.
+ Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and has been manually verified to show usage of Market 1501.
</div>
<section>
@@ -78,7 +78,7 @@
<h3>Citations</h3>
<p>
Citations were collected from <a href="https://www.semanticscholar.org">Semantic Scholar</a>, a website which aggregates
- and indexes research papers. Metadata was extracted from these papers, including extracting names of institutions automatically from PDFs, and then the addresses were geocoded. Data is not yet manually verified, and reflects anytime the paper was cited. Some papers may only mention the dataset in passing, while others use it as part of their research methodology.
+ and indexes research papers. The citations were geocoded using names of institutions found in the PDF front matter, or as listed on other resources. These papers have been manually verified to show that researchers downloaded and used the dataset to train and/or test machine learning algorithms.
</p>
<p>
Add button/link to download CSV
diff --git a/site/public/datasets/pipa/index.html b/site/public/datasets/pipa/index.html
index dca75724..62754070 100644
--- a/site/public/datasets/pipa/index.html
+++ b/site/public/datasets/pipa/index.html
@@ -57,7 +57,7 @@
<div class="map-legend-item edu">Academic</div>
<div class="map-legend-item com">Industry</div>
<div class="map-legend-item gov">Government</div>
- Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and not yet manually verified.
+ Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and has been manually verified to show usage of PIPA Dataset.
</div>
<section>
@@ -78,7 +78,7 @@
<h3>Citations</h3>
<p>
Citations were collected from <a href="https://www.semanticscholar.org">Semantic Scholar</a>, a website which aggregates
- and indexes research papers. Metadata was extracted from these papers, including extracting names of institutions automatically from PDFs, and then the addresses were geocoded. Data is not yet manually verified, and reflects anytime the paper was cited. Some papers may only mention the dataset in passing, while others use it as part of their research methodology.
+ and indexes research papers. The citations were geocoded using names of institutions found in the PDF front matter, or as listed on other resources. These papers have been manually verified to show that researchers downloaded and used the dataset to train and/or test machine learning algorithms.
</p>
<p>
Add button/link to download CSV
diff --git a/site/public/datasets/uccs/index.html b/site/public/datasets/uccs/index.html
index 336d5f01..0282902c 100644
--- a/site/public/datasets/uccs/index.html
+++ b/site/public/datasets/uccs/index.html
@@ -57,7 +57,7 @@
<div class="map-legend-item edu">Academic</div>
<div class="map-legend-item com">Industry</div>
<div class="map-legend-item gov">Government</div>
- Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and not yet manually verified.
+ Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and has been manually verified to show usage of UCCS.
</div>
<section>
@@ -65,6 +65,27 @@
Standardized paragraph of text about the map. Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam eaque ipsa, quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt, explicabo.
</p>
</section><section>
+ <h3>Who used UCCS?</h3>
+
+ <p>
+ This bar chart presents a ranking of the top countries where citations originated. Mouse over individual columns
+ to see yearly totals. These charts show only the top 10 countries overall.
+ </p>
+
+ </section>
+
+<section class="applet_container">
+ <div class="applet" data-payload="{&quot;command&quot;: &quot;chart&quot;}"></div>
+</section><section>
+ <p>
+ These pie charts show overall totals based on country and institution type.
+ </p>
+
+ </section>
+
+<section class="applet_container">
+ <div class="applet" data-payload="{&quot;command&quot;: &quot;piechart&quot;}"></div>
+</section><section>
<div class="hr-wave-holder">
@@ -78,7 +99,7 @@
<h3>Citations</h3>
<p>
Citations were collected from <a href="https://www.semanticscholar.org">Semantic Scholar</a>, a website which aggregates
- and indexes research papers. Metadata was extracted from these papers, including extracting names of institutions automatically from PDFs, and then the addresses were geocoded. Data is not yet manually verified, and reflects anytime the paper was cited. Some papers may only mention the dataset in passing, while others use it as part of their research methodology.
+ and indexes research papers. The citations were geocoded using names of institutions found in the PDF front matter, or as listed on other resources. These papers have been manually verified to show that researchers downloaded and used the dataset to train and/or test machine learning algorithms.
</p>
<p>
Add button/link to download CSV
diff --git a/site/public/datasets/viper/index.html b/site/public/datasets/viper/index.html
index 1de17f57..eec9ca82 100644
--- a/site/public/datasets/viper/index.html
+++ b/site/public/datasets/viper/index.html
@@ -36,7 +36,7 @@
<p>
This bar chart presents a ranking of the top countries where citations originated. Mouse over individual columns
- to see yearly totals. Colors are only assigned to the top 10 overall countries.
+ to see yearly totals. These charts show only the top 10 countries overall.
</p>
</section>
@@ -44,6 +44,15 @@
<section class="applet_container">
<div class="applet" data-payload="{&quot;command&quot;: &quot;chart&quot;}"></div>
</section><section>
+ <p>
+ These pie charts show overall totals based on country and institution type.
+ </p>
+
+ </section>
+
+<section class="applet_container">
+ <div class="applet" data-payload="{&quot;command&quot;: &quot;piechart&quot;}"></div>
+</section><section>
<h3>Information Supply Chain</h3>
<!--
@@ -71,7 +80,7 @@
<div class="map-legend-item edu">Academic</div>
<div class="map-legend-item com">Industry</div>
<div class="map-legend-item gov">Government</div>
- Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and not yet manually verified.
+ Data is compiled from <a href="https://www.semanticscholar.org">Semantic Scholar</a> and has been manually verified to show usage of VIPeR.
</div>
<section>
@@ -92,7 +101,7 @@
<h3>Citations</h3>
<p>
Citations were collected from <a href="https://www.semanticscholar.org">Semantic Scholar</a>, a website which aggregates
- and indexes research papers. Metadata was extracted from these papers, including extracting names of institutions automatically from PDFs, and then the addresses were geocoded. Data is not yet manually verified, and reflects anytime the paper was cited. Some papers may only mention the dataset in passing, while others use it as part of their research methodology.
+ and indexes research papers. The citations were geocoded using names of institutions found in the PDF front matter, or as listed on other resources. These papers have been manually verified to show that researchers downloaded and used the dataset to train and/or test machine learning algorithms.
</p>
<p>
Add button/link to download CSV