Skip to content

Commit

Permalink
Add new classifiers to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jmelot committed Dec 17, 2024
1 parent 6f30e93 commit d47b8a1
Show file tree
Hide file tree
Showing 2 changed files with 226 additions and 0 deletions.
154 changes: 154 additions & 0 deletions web/tests/test_data/alphabet_input.json
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,8 @@
"cv_pubs": 68,
"nlp_pubs": 1,
"robotics_pubs": 31,
"ai_safety_pubs": 31,
"llm_pubs": 31,
"ai_pubs_by_year": [
{
"year": 2014,
Expand Down Expand Up @@ -302,6 +304,82 @@
"num_papers": 10
}
],
"ai_safety_pubs_by_year": [
{
"year": 2014,
"num_papers": 1
},
{
"year": 2015,
"num_papers": 0
},
{
"year": 2016,
"num_papers": 0
},
{
"year": 2017,
"num_papers": 1
},
{
"year": 2018,
"num_papers": 4
},
{
"year": 2019,
"num_papers": 4
},
{
"year": 2020,
"num_papers": 6
},
{
"year": 2021,
"num_papers": 5
},
{
"year": 2022,
"num_papers": 10
}
],
"llm_pubs_by_year": [
{
"year": 2014,
"num_papers": 1
},
{
"year": 2015,
"num_papers": 0
},
{
"year": 2016,
"num_papers": 0
},
{
"year": 2017,
"num_papers": 1
},
{
"year": 2018,
"num_papers": 4
},
{
"year": 2019,
"num_papers": 4
},
{
"year": 2020,
"num_papers": 6
},
{
"year": 2021,
"num_papers": 5
},
{
"year": 2022,
"num_papers": 10
}
],
"highly_cited_ai_pubs_by_year": [
{
"year": 2014,
Expand Down Expand Up @@ -571,6 +649,82 @@
"num_papers": 39
}
],
"ai_safety_citation_count_by_year": [
{
"year": 2015,
"num_papers": 1
},
{
"year": 2016,
"num_papers": 15
},
{
"year": 2017,
"num_papers": 45
},
{
"year": 2018,
"num_papers": 230
},
{
"year": 2019,
"num_papers": 541
},
{
"year": 2020,
"num_papers": 1357
},
{
"year": 2021,
"num_papers": 2039
},
{
"year": 2022,
"num_papers": 1820
},
{
"year": 2023,
"num_papers": 39
}
],
"llm_citation_count_by_year": [
{
"year": 2015,
"num_papers": 1
},
{
"year": 2016,
"num_papers": 15
},
{
"year": 2017,
"num_papers": 45
},
{
"year": 2018,
"num_papers": 230
},
{
"year": 2019,
"num_papers": 541
},
{
"year": 2020,
"num_papers": 1357
},
{
"year": 2021,
"num_papers": 2039
},
{
"year": 2022,
"num_papers": 1820
},
{
"year": 2023,
"num_papers": 39
}
],
"fields": [
{
"field_name": "Segmentation",
Expand Down
72 changes: 72 additions & 0 deletions web/tests/test_data/alphabet_output.json
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,40 @@
"total": 6087,
"isTopResearch": false
},
"ai_safety_citation_counts": {
"counts": [
0,
1,
15,
45,
230,
541,
1357,
2039,
1820,
39,
0
],
"total": 6087,
"isTopResearch": false
},
"llm_citation_counts": {
"counts": [
0,
1,
15,
45,
230,
541,
1357,
2039,
1820,
39,
0
],
"total": 6087,
"isTopResearch": false
},
"cv_publications": {
"counts": [
1,
Expand Down Expand Up @@ -323,6 +357,44 @@
"growth": 44.44,
"citations_per_article": 196.3548387096774
},
"ai_safety_publications": {
"counts": [
1,
0,
0,
1,
4,
4,
6,
5,
10,
0,
0
],
"total": 31,
"isTopResearch": true,
"growth": 44.44,
"citations_per_article": 196.3548387096774
},
"llm_publications": {
"counts": [
1,
0,
0,
1,
4,
4,
6,
5,
10,
0,
0
],
"total": 31,
"isTopResearch": true,
"growth": 44.44,
"citations_per_article": 196.3548387096774
},
"ai_citations_per_article": {
"counts": [
0.0,
Expand Down

0 comments on commit d47b8a1

Please sign in to comment.