From 2468606b313ddbc1ded46391390d9f1a6cd11b5e Mon Sep 17 00:00:00 2001
From: za158 <58824955+za158@users.noreply.github.com>
Date: Thu, 20 Jun 2024 16:54:47 -0400
Subject: [PATCH 1/2] delete obsolete tooltip
---
web/gui-v2/src/static_data/tooltips.js | 1 -
1 file changed, 1 deletion(-)
diff --git a/web/gui-v2/src/static_data/tooltips.js b/web/gui-v2/src/static_data/tooltips.js
index 1d36aeb..53d726f 100644
--- a/web/gui-v2/src/static_data/tooltips.js
+++ b/web/gui-v2/src/static_data/tooltips.js
@@ -16,7 +16,6 @@ const tooltips = {
highly_cited_ai_pubs: <>The total number of the company's highly cited AI publications. Read more >>>,
ai_pubs_percent: <>The percentage of the company's total research publications over the past ten years that were AI publications. Read more >>>,
ai_pubs_top_conf: <>The number of research publications by authors from the company that were accepted to top AI conferences over the past ten years. Some recent publications may be omitted. Read more >>>,
- ai_pubs_last_full_year: <>The total number of AI research publications that the company released in the last year for which complete data is available (currently 2022). Read more >>>,
citations: <>The number of citations to AI research publications released by the company over the prior 10 years. Read more >>>,
cv_pubs: <>The total number of computer vision research publications that the company released publicly over the prior 10 years. Some recent publications may be omitted. Read more >>>,
nlp_pubs: <>The total number of natural language processing research publications that the company released publicly over the prior 10 years. Some recent publications may be omitted. Read more >>>,
From 0367766cc22bbed6602d39cee3b41961f369636c Mon Sep 17 00:00:00 2001
From: Brian Love
Date: Mon, 24 Jun 2024 15:25:49 -0400
Subject: [PATCH 2/2] Specify which files are or are not generated
GitHub was treating some non-generated files (like `tooltips.js`) as
generated, so specify this explicitly in the .gitattributes file.
---
.gitattributes | 9 +++++++++
1 file changed, 9 insertions(+)
create mode 100644 .gitattributes
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..fb7a806
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,9 @@
+# Configure which files are generated (linguist-generated=true) and
+# which are not (false). GitHub was previously considering some
+# non-generated files as generated.
+web/gui-v2/src/static_data/data.js linguist-generated=true
+web/gui-v2/src/static_data/detail-toc.json linguist-generated=false
+web/gui-v2/src/static_data/overall_data.json linguist-generated=true
+web/gui-v2/src/static_data/table_columns.js linguist-generated=false
+web/gui-v2/src/static_data/tooltips.js linguist-generated=false
+